码迷,mamicode.com
首页 >  
搜索关键字:趣味    ( 723个结果
小学生趣味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
小学生趣味C++编程第23课 打车费用
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> using namespace std; int main() { int lucheng,shijian; float ...
分类:编程语言   时间:2020-04-14 01:13:31    阅读次数:93
小学生趣味C++编程第33课 打擂台
#include<iostream> using namespace std; int main() { float max,x; int i; cout<<"请输入第1个数:"; cin>>x; max=x; i=2; for(;i<=10;i++) { cout<<"请输入第"<<i<<"个数: ...
分类:编程语言   时间:2020-04-14 01:12:11    阅读次数:135
小学生趣味C++编程第20课 孔融让梨
#include<iostream> using namespace std; int main() { int a,b,c,min; cout<<"a b c="; cin>>a>>b>>c; if(a<b) min=a; else min=b; if(c<min) min=c; cout<<"m ...
分类:编程语言   时间:2020-04-14 01:09:08    阅读次数:115
小学生趣味C++编程第19课 比大小
#include<iostream> using namespace std; int main() { int a,b,t; cout<<"a,b="; cin>>a>>b; if(a<=b) cout<<a<<" "<<b<<endl; else cout<<b<<" "<<a<<endl; r ...
分类:编程语言   时间:2020-04-14 01:08:23    阅读次数:67
723条   上一页 1 2 3 4 5 6 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!