#include<iostream> #include<iomanip> using namespace std; int main() { long i,a1,a2,a3; a2=a1=1; cout<<setw(5)<<a1; cout<<setw(5)<<a2; for(i=3;i<=10;i ...
分类:
编程语言 时间:
2020-04-14 01:08:05
阅读次数:
95
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { int n; cout<<"请输入编号:"; cin ...
分类:
编程语言 时间:
2020-04-14 01:03:46
阅读次数:
88
#include<iostream> using namespace std; int main() { int i,num,n,m; cin>>num; m=0; n=num; for(;n>0;) { m=m*10+n%10; n=n/10; } if(m==num) cout<<"是回文数"< ...
分类:
编程语言 时间:
2020-04-14 01:00:54
阅读次数:
70
#include<iostream> using namespace std; int main() { int i; for(i=1;i<=200;++i) if(i%3==2&&i%7==1) cout<<i<<' '; return 0; } 链接:https://pan.baidu.com/ ...
分类:
编程语言 时间:
2020-04-14 00:50:44
阅读次数:
66
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { float a,b,c,temp; cout<<"a ...
分类:
编程语言 时间:
2020-04-14 00:47:38
阅读次数:
120
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { int n; char score; cout<<" ...
分类:
编程语言 时间:
2020-04-14 00:41:52
阅读次数:
101
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { long long i,n; bool flag; ...
分类:
编程语言 时间:
2020-04-14 00:38:46
阅读次数:
71
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { long long sum,n; // long l ...
分类:
编程语言 时间:
2020-04-14 00:37:02
阅读次数:
75
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> #include<ctime> //需要调用time()函数 #include<cstdlib> //需要调用srand ...
分类:
编程语言 时间:
2020-04-14 00:36:45
阅读次数:
79
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { int ge,shi,bai,i; cout<<"水 ...
分类:
编程语言 时间:
2020-04-14 00:31:22
阅读次数:
76