资源预览内容
第1页 / 共6页
第2页 / 共6页
第3页 / 共6页
第4页 / 共6页
第5页 / 共6页
第6页 / 共6页
亲,该文档总共6页全部预览完了,如果喜欢就下载吧!
资源描述
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; cintoujiao; 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(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
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号