《C++低学阶例题(简单版)十一》由会员分享,可在线阅读,更多相关《C++低学阶例题(简单版)十一(6页珍藏版)》请在金锄头文库上搜索。
1、C+ 低学阶 例题题目一:用键盘输入5个数字,将其累加后输出结果输入:一行,5个正整数输出:一个正整数代码:#includeusing namespace std;int main()int s=0,n,a;for(int i=0;ia;s+=a; couts;return 0;题目二:1500年前孙子算经:今有鸡兔同笼,上有35头,下有94足,问鸡兔各几何?现输入头的个数,脚的只数。求有多少种可能的组合。输入:输入头的个数,脚的只数。输出:鸡的个数和兔子的个数代码:#includeusing namespace std;int main() int a,b,tou,jiao; cintouj
2、iao; for(int ji=0;ji100;ji+) for(int tu=0;tu100;tu+) a=(ji+tu); b=(ji*2+tu*4); if(tou=a&jiao=b) cout鸡的个数为ji 兔子的个数为tu; return 0;题目三:一个班里有n个学生,老师想知道有多少学生的身高超过了160,请你帮助这位老师统计一下输入:第一行:输入n第二行:输入n个学生的身高(假设身高是整数)输出:身高超过160学生的个数代码:#includeusing namespace std;int main() int n,h,a=0; cinn; for(int i=0;ih; if(
3、h160) a+; couta; return 0;题目四:输入n(n=1000)个数,然后按照原来的顺序输出第L个到第m个数输入:两行第一行 n L m第二行 n个数输出:第L个到第m个数 代码:#includeusing namespace std;int main()int n,l,m;cinnlm;int a1000;for(int i=0;iai;for(int j=l-1;jm;j+)coutaj ; return 0;题目五:用for循环输出10个数:1 2 .10输入:无输出: 1 2 3 4 5 6 7 8 9 10代码:#includeusing namespace std;int main() for(int i=1;i=10;i+) cout i; return 0;6