这个家伙很家伙,啥也没啥
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; int main(){ int n,ans = 0,num[n]{0}; int j = 1; scanf("%d", n); for(int i=0;i 0){ ans++; } } printf("%d",ans); return 0; }…
在讨论《样例过不了,求调》回复:
@[wangshengchen](luogu://user/1400450)能解释一下这是咋弄的吗
```cpp #include using namespace std; int main() { int a,b,day = 0; cin >> a >> b; for(int i=0;i<=b;i++){ day += a; } if(day % 7 == 0){ puts("Sunday"); }else if(…
在讨论《不会(到34就卡了)》回复:
@[zhangchi20121226](luogu://user/1442389)也是很成功的过了,谢谢
在讨论《不会(到34就卡了)》回复:
@[zhangchi20121226](luogu://user/1442389)请问最后一个求关什么意思
在讨论《不会(到34就卡了)》回复:
34行的“......”是不会, ~~不是省略~~
```cpp #include using namespace std; int main() { int n,i = 0; int maxm[i]; cin >> n; string a[i],maxn; // 名字 int b[i],c[i],f[i]; //b:期末平均分 c:评议成绩 f:论文数 char d[…
在讨论《求大佬,TLE了》回复:
@[b__b](luogu://user/1121063)过去了,thank you very much.
在讨论《求调》回复:
@[ny_123457](luogu://user/1368090)+1
在讨论《求大佬,TLE了》回复:
@[b__b](luogu://user/1121063)用printf和cout有什么区别吗
在讨论《求大佬,TLE了》回复:
T456435
```cpp #include using namespace std; int main() { int n; cin >> n; while(n != 1){ if(n % 2 == 0){ cout << n << '/' << '2' << '=' << n/2 <<endl; n = n/2; }else{…