这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《这题怎么写呀,求代码》回复:
紧急
```cpp 数据统计(tongji.cpp) 【题目描述】 给定一个长度为n的整型数组a,统计数组中每个数字出现的次数,并打印输出。 【输入格式】 两行,第一行是一个正整数n表示数组长度,第二行包含n个整数表示数组元素; 数组元素可能有正数也可能有负数。 【输出格式】 若干行,每行包含两个整数,第一个是数组中数字的值…
在讨论《关于题面码风的问题》回复:
```cpp #include using namespace std; int main() { int a,b; cin >>a>>b; cout <<a+b<< endl; return 0; } ```
在讨论《求助70分》回复:
```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; unsigned long long c=pow(a,b); if(c<=pow(10,9)){ cout<<c; }else{ cout<<"-1"; } return 0; }…
在讨论《求助70分》回复:
@[SamHJD](/user/565684) 知道了谢谢啊
```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; struct long long c=pow(a,b); if(c<=pow(10,9)){ cout<<c; }else{ cout<<"-1"; } return 0; } `…
在讨论《求助没人回复咋办》回复:
AC代码 ``` #include using namespace std; int main() { string k,c; cin>>k>>c; for (int i=0;i 0?c[i]-t:c[i]-t+26; } cout<<c<<endl; return 0; } ```
在讨论《求助大神》回复:
@[江李昊岳](/user/570463) 打错了,知道了 THANK you
在讨论《求助大神》回复:
```cpp #include using namespace std; int main(){ long long a; cin>>a; double b=a/1.2; double c=a/3+23+27; if (b>c){ cout b){ cout<<"Walk"; }else if(c=b){ cout<<…
在讨论《求助,30》回复:
``` #include using namespace std; typedef long long ll; int main() { int n,m; cin>>n>>m; ll sq=0; ll rec=0; for(int i=0;i<n;i++) { for(int j=0;j<m;j++){ if(i==j…
在讨论《请问ends和" "有区别吗》回复:
有