这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
``` #include using namespace std; // 1 2 3 // 8 9 4 // 7 6 5 int main(){ int k=1; int n; cout >n; int arr[n][n]; int left=0; int right=n-1; int top=0; int botto…
``` package luogu; import java.util.Scanner; public class P5728旗鼓相当的对手 { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int t=0; int…
在讨论《样例过了为啥全红》回复:
@[lvweisi](/user/999154) 感谢,我才发现是我第二个for循环写的有问题,把4改成n就行了
在讨论《样例过了为啥全红》回复:
@[yzq120806](/user/1348824) 没用还是全红
在讨论《感觉代码没问题,但输出会多出一个,求助,必关!!》回复:
@[woshnd](/user/1040231) 感谢,关了
``` #include using namespace std; int main(){ int n; int t=1; int m=1; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=4;j++){ if(t<10){ cout<<"0"<<t++; }else{ co…
```cpp #include #include using namespace std; int aa(int a){ int s=0; int k=a; while(a!=0){ s=s*10+a%10; a=a/10; } if(k==s){ return 0; }else{ return 1; } } int…
在讨论《40分求助》回复:
@[Ff472130](/user/1441630) 感谢关注了
``` #include using namespace std; int main(){ int k,s=0,n,t=0; cin>>k; for(int i=2;i =k){ break; } } cout<<t; return 0; } ```