程序设计I实验.ppt
《程序设计I实验.ppt》由会员分享,可在线阅读,更多相关《程序设计I实验.ppt(7页珍藏版)》请在第壹文秘上搜索。
1、程序设计I实验实验5:选择语句(下)实验目的 掌握布尔型变量的定义和用法 掌握关系运算符、逻辑运算符的使用 巩固if-else分支结构的使用 练习switch语句的用法实验内容1 Using the&and|operatorWrite a program that reads an integer n and determines whether it is divisible by 5 and 6,whether it is divisible by 5 or 6,and whether it is divisible by 5 or 6,but not both.InputAn integ
2、er n in one line.OutputThe result in 3 lines like the Sample Output.Sample Input10 Sample OutputIs 10 divisible by 5 and 6?falseIs 10 divisible by 5 or 6?trueIs 10 divisible by 5 or 6,but not both?True实验内容2Find the max and min读入若干整数,找出其中的最大值和最小值。Input输入的第一行为一个数N,表示即将输入的数字的个数(2=N=1000)。接下来有N行,每一行一个整数
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 程序设计 实验