《实验3参考解答.ppt》由会员分享,可在线阅读,更多相关《实验3参考解答.ppt(13页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、实验3参考解答 Still waters run deep.流静水深流静水深,人静心深人静心深 Where there is life,there is hope。有生命必有希望。有生命必有希望实验内容-1基于下面的代码,编写一个程序并进行编译、运行。观察运行结果并分析类型转换的影响/已知矩形面积为20、长为8,求其宽度。cout Width is:20/8 n;cout Width is:float(20)/8 n;cout Width is:(float)20/8 n;cout Width is:20/float(8)n;cout Width is:20/(float)8 n;cout W
2、idth is:float(20/8)n;实验内容-2编写一个程序,实现:从键盘读入三个整数,计算其平均值,把结果显示在屏幕上。提示:注意数据类型的选择参考代码int main()int i,j,k;coutijk;float avg=(i+j+k)/3.0;cout The average is avgendl;return 0;实验内容-3编写一个程序实现简单的英文字母大小写转换用户从键盘输入一个小字母将相应的大写字母显示在屏幕上不考虑非法输入的情况int main()char ci;coutPlease enter a letter with little case:ci;cout(ch
3、ar)(ci-32)endl;return 0;实验内容-4编写一个程序将一个ASCII码值转换成相应的字符用户从键盘输入一个整数值(33127之间)将相应的字符显示在屏幕上不考虑非法输入的情况参考代码int main()int i;coutPlease enter an integer(33127):i;cout The corresponding char is:endl;cout(char)i=85=75=6060等级优良及格不及格评语Excellent GoodPassFail奖学金10005001000实验内容3题目:Write a program that reads three edges for a triangle and determines whether the input is valid.提示:Properties of valid edgesPositiveSum of two is greater than the third结束!