|QAQ|团队招人https://www.luogu.com.cn/team/90722|tangqizhang18是小号⎛⎝≥⏝⏝≤⎠⎞|史蒂夫:“吃我亿刀!“
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《20分,有亿点差。》回复:
好的,谢谢大佬们
``` #include using namespace std; int main(){ int x; cin>>x; if(x%(3*5*7)==0){ cout<<"3"<<" "<<5<<" "<<"7"; } if(x%(3*5)==0){ cout<<"3"<<" "<<"5"; } if(x%(5*7)=…
``` #include using namespace std; int main(){ int x; cin>>x; if(x%(3*5*7)==0){ cout<<"3"<<" "<<5<<" "<<"7"; } if(x%(3*5)==0){ cout<<"3"<<" "<<"5"; } if(x%(5*7)=…
在讨论《这里是无人区吗?》回复:
那倒没有破防。
在讨论《这里是无人区吗?》回复:
我的那就快三个小时,都没有人回复。
在讨论《有没有特别水的题???》回复:
https://www.luogu.com.cn/problem/P9145
在讨论《两个小时没有一个回复》回复:
怎么不可能,不信自己去题库选择入门,找到P1426 小鱼会有危险吗
在讨论《两个小时没有一个回复》回复:
现在都快3小时了!!!
``` #include using namespace std; int main(){ int s,x,a=7,b=0; cin>>s>>x; while(b<s-x){ b=b+a; s=s-a; a=a*0.98; } if(a*0.98<=s+x)cout<<"y"; else cout<<"n"; retu…
``` #include using namespace std; int main(){ int m,t,s,a,b; cin>>m>>t>>s; if(t==0)cout<<0; b=s/t; a=m-b; cout<<a; return 0; } ```
``` #include using namespace std; int main(){ int x,n,a=1,b=0; cin>>x>>n; for(int i=1;i<=n;i++){ a=a*(x+1); } b=a; cout<<b; return 0; } ```
在讨论《求大佬告诉我错在哪?》回复:
我搞完之后30分 ``` #include using namespace std; int main(){ int x,n,a=1,b=0; cin>>x>>n; for(int i=1;i<=n;i++){ a=a*(x+1); } b=a; cout<<b; return 0; } ```
``` #include using namespace std; int main(){ int x,n,a=1,b=0; cin>>x>>n; for(int i=1;i<=n;i++){ a=a*x+1; } b=a; cout<<b; return 0; } ```
在讨论《求大佬看一下,为什么错了?》回复:
感谢大佬们的指导!
在讨论《求大佬看一下,为什么错了?》回复:
?
``` #include using namespace std; int main(){ int n,k,s; cin>>n>>k; for(int i=0;i<=k;i++){ s++; if(s==n){ k++; } } cout<<s; return 0; } ```
代码: ```cpp #include using namespace std; int zs(int t){ for(int i=2;i >l; for(int i=2;i =l){ cout<<j; } } return 0; } ```
```cpp #include using namespace std; int a[25]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97}; int main(){ int l,t=0,c=0; cin>>l; whil…
在讨论《思路有点乱,大佬指导》回复:
```cpp#include using namespace std; int a[25]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97}; int main(){ int l,t=0,c=0; cin>>l; while…
上代码: ```cpp #include using namespace std; int a[25]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97}; int main(){ int l,t=0,c=0; cin>>l;…
在讨论《大佬求助,为何不过???》回复:
谢谢大佬的指导,马上去改。
上代码: ```cpp #include using namespace std; int main{ int n; cin>>n; if(n==1){ n=1*1; } if(n==2){ n=1*2; } if(n==3){ n=1*2*3; } if(n==4){ n=1*2*3*4; } if(n==5){ n…
在讨论《这道题用暴力为什么不通过,求大佬帮助》回复:
感谢大佬的指导,蒟蒻马上去改。
在讨论《这道题用暴力为什么不通过,求大佬帮助》回复:
意思是说要打到$if(n==20)$
```cpp #include using namespace std; int main(){ int n; cin>>n; if(n==1){ cout<<"1\n"; } if(n==2){ cout<<"1\n"; cout<<"1 1\n"; } if(n==3){ cout<<"1\n"; cout<<"1…
在讨论《本人暴力写了好久,结果没对》回复:
有问题明天说。
在讨论《本人暴力写了好久,结果没对》回复:
@[kevinZ99](/user/1117080) @[xd244](/user/1153793) 谢谢二位指导,蒟蒻马上去改
```cpp #include using namespace std; int main(){ int n; cin>>n; if(n==1){ cout<<"1\n"; } if(n==2){ cout<<"1 2\n"; cout<<"4 3\n"; } if(n==3){ cout<<"1 2 3\n"; co…