码迷,mamicode.com
首页 >  
搜索关键字:趣味    ( 723个结果
小学生趣味C++编程第37课 神奇的大自然
#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++编程第26课 王宅六味
小学生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
小学生趣味C++编程第36课 天连碧水碧连天
#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
小学生趣味C++编程第31课 3721数
#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++编程第21课 田忌赛马
小学生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++编程第25课 成绩等级
小学生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++编程第34课 生命周期与素数
小学生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++编程第30课 棋盘上的学问
小学生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++编程第22课 抽奖
小学生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++编程第35课 水仙花数
小学生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
723条   上一页 1 ... 3 4 5 6 7 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!