码迷,mamicode.com
首页 >  
搜索关键字:c语言 趣味编程    ( 55个结果
趣味编程:静夜思(Rust版)
静夜思(Rust版) ...
分类:其他好文   时间:2020-04-15 11:08:57    阅读次数:67
小学生趣味C++编程第51课 拍手游戏
链接:https://pan.baidu.com/s/1qDdBkFPakLtCvh8_W2wiog 提取码:x3zg #include<iostream> using namespace std; int main() { int time, count,teacher,nike, glair; ...
分类:编程语言   时间:2020-04-15 01:08:14    阅读次数:272
小学生趣味C++编程第49课 大大大
#include<iostream> #include<cmath> //调用求浮点数的绝对值函数fabs() using namespace std; int main() { double x,y; long long num; cout<<"请输入一个纯小数"<<endl; do { cout ...
分类:编程语言   时间:2020-04-15 00:58:00    阅读次数:108
小学生趣味C++编程第46课 精益求精
#include<iostream> using namespace std; int main() { int a,b,i; cout<<"0."; i=1; a=1; while(i<=100) { a*=10; b=a/7; cout<<b; a%=7; i++; } return 0; } ...
分类:编程语言   时间:2020-04-15 00:56:20    阅读次数:81
小学生趣味C++编程第50课 书香阁的座位数
链接:https://pan.baidu.com/s/1qDdBkFPakLtCvh8_W2wiog 提取码:x3zg #include<iostream> using namespace std; int main() { int sum,p,x; p=1; x=15; sum=x; cout<< ...
分类:编程语言   时间:2020-04-15 00:27:23    阅读次数:78
小学生趣味C++编程第48课 加加乐
#include<iostream> using namespace std; int main() { long long n; int a,sum=0; cout<<"n="; cin>>n; do { a=n%10; sum+=a; n=n/10; }while(n!=0); cout<<"各 ...
分类:编程语言   时间:2020-04-15 00:20:25    阅读次数:73
小学生趣味C++编程第53课 化功大法(完整)
链接:https://pan.baidu.com/s/1qDdBkFPakLtCvh8_W2wiog 提取码:x3zg #include<iostream> #include<cmath> //调用求浮点数的绝对值函数fabs() using namespace std; int main() { ...
分类:编程语言   时间:2020-04-15 00:16:14    阅读次数:141
小学生趣味C++编程第24课 体质指数BMI
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { float height,weight,bmi; c ...
分类:编程语言   时间:2020-04-14 01:17:52    阅读次数:139
小学生趣味C++编程第32课 26个兄弟姐妹
#include<iostream> using namespace std; int main() { char i; for(i='a';i<='z';i++) cout<<i<<' '; cout<<endl; for(i='Z';i>='A';i--) cout<<i<<' '; retur ...
分类:编程语言   时间:2020-04-14 01:15:08    阅读次数:236
小学生趣味C++编程第18课 闰年与平年
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { bool flag; int year; cout< ...
分类:编程语言   时间:2020-04-14 01:14:43    阅读次数:214
55条   1 2 3 4 ... 6 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!