- C++
李珝柏
- 2024-2-3 12:00:28 @
8 条评论
-
15805286761 LV 6 @ 2024-2-13 21:49:53
using namespace std; int main(){ int a,b,x=0; cin>>a; b=a%10; for(int i=1;i<=b;i++){ cout<<b-x<<" "; x++; } return 0; }
-
2024-2-7 16:28:16@
-
2024-2-4 12:11:30@
-
2024-2-4 10:23:21@
using namespace std; int main(){ for(int i=1000;i<=9999;i++){ int g=i%10; int s=i/10%10; int b=i/10/10%10; int q=i/10/10/10%10; double r=sqrt(i); int t=r; if(g==s&&b==q&&r==t)cout<<i<<endl; } return 0; }
-
2024-2-3 12:02:25@
-
2024-2-3 12:01:47@
using namespace std; int main(){ for(int i=100;i<=999;i++){ if(pow(i%10,3)+pow(i/10%10,3)+pow(i/10/10%10,3)==i){ cout<<i<<endl; } } return 0; }
-
2024-2-3 12:01:11@
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=100;i<=999;i++){ int g=(i%10)(i%10)(i%10); int s=(i/10%10)(i/10%10)(i/10%10); int b=(i/10/10%10)(i/10/10%10)(i/10/10%10); if(g+s+b==i){ cout<<i<<endl; } } return 0; }
-
2024-2-3 12:01:01@
#include using namespace std; int main(){ for(int i=100;i<=999;i++){ int g=(i%10)*(i%10)*(i%10); int s=(i/10%10)*(i/10%10)*(i/10%10); int b=(i/10/10%10)*(i/10/10%10)*(i/10/10%10); if(g+s+b==i){ cout<<i<<endl; } } return 0; }
- 1