版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Exercise 1.1Output a string输出一个字符串Output the string givenhe following.his exercise, you are required to output spel characters,including and .Please add comments in your program输出下面给出的字符串.这题需要你掌握如何输出特殊字符,如和.whereappropriate.请在程序中适当的地方添加注释.EXnLE OUTPUT主程序1 #include source 程序文本框测试数据保存和测试测试输出Exercise 1
2、.2123456789#include using namespatd;/*This function output the required characters.*/main() cout _$%+*主程序1 #include source 程序文本框测试数据保存和测试测试输出Exercise 1.3The meaning of#includehemain program主程序中#include的解释123456789#include using namespatd;/*This function output the required characters.*/main() cout _
3、$%+*/?);/.;There are two pie which is given, an main program is the each compilation, the source and then incl proprogram is always compil line is replaced by youroreas o the main programa file namedthrough the pre-a在每个练习中都有两个程序:一个给定的上被编译和运行的程序。在每次编译前,过#include source预处理命令包含入 source行在被件,然后通单地说,主程序总是
4、在它的#includeThere are two types of exercise:am conthe #include source line. the complete programit isplete wiyou needprogram,to provide the exact in order to completemissing par the main protputcorrectly.共有两类练习题:在第一类中,主程序只包含一行:能产生正确输出的整个程序。在第二类中,主程序中包含程#include source行。这种掉,这部程序中缺少的部分所在位置由#include sou
5、rce行所表示。这种情况下,你要给出分,以使得主程序完整并能正确地输出。This exercise belongs to the second ty write something to complete theto write an evaluation s anired to ou need这个练习题属于第二类:你需要写一些东西来是使主程序完整。具体来说,你需要写一个赋值来使一个名为age的整数变量的值增加10。 EX10EX20LE OUTPUT主程序 1 #include 2 using namespatd; 34main() 6cin age; 78#include source 9
6、10cout age;11 程序文本框测试数据保存和测试测试输出Exercise 1.4Define variables定义变量PleaseAn An An Andefine the followingvariables:eger variable, named year. real variable, named seconds.variable, named isMonday. character variable, named code.请定义以下的变量:一个名为year的整数变量.一个名为seconds的实数变量.一个名为isMonday的变量.一个名为code的字符变量.LE OUT
7、PUTEX48111 age = age + 10;5age;主程序2using namespatd;4main() 6coutsizeof(year) endl;8coutsizeof(isMonday)endl;10程序文本框测试数据保存和测试测试输出Exercise 1.5Define and initialize定义并初始化变量variablesPleasedefine and initialize the following variables:An An An Aneger variable, named year, and initialize itto 1990.real va
8、riable, named seconds, and initialize itto 1234.56.variable, named isMonday, and initialize it to true.character variable, named code, and initialize it to C.请定义以下的变量:一个名为year的整数变量,并把它初始化为1990。一个名为seconds的实数变量,并把它初始化为1234.56。一个名为isMonday的变量,并把它初始化为true。1234year; double seconds; bool isMonday; char c
9、ode;9cout sizeof(code) endl;7cout sizeof(seconds) endl;5#include source31 #include 一个名为code的字符变量,并把它初始化为C。LE OUTPUTEX19901234.561C主程序2using namespatd;4main() 6coutyear endl;8coutisMondayendl;10程序文本框测试数据保存和测试测试输出Exercise 1.6ition个实数ofareal numberInput a real number andthe output itsegart and fraction
10、 partwo lines, respectively.输入一个实数并把它的整数部分和小数部分分别在两行输出.1234year = 1990;double seconds = 1234.56; bool isMonday = true; char code = C;9cout code endl;7cout seconds endl;5#include source31 #include EXLE INPUT12.34EXLE OUTPUT120.34主程序1 #include source 程序文本框测试数据保存和测试测试输出123456789101112131415161718#inclu
11、de using namespatd;/*This function input a real numberand outputs itsegart and fraction part, respectively.*/main() / read a real number double number;cin number;/ obtain itsegart by/ converting to anger eger = number;/ obtain its fraction part by/ reducing itsegartnumber -=eger; 21/ output the two
12、partscout eger endl;cout number endl; 25 Exercise 1.7Last two binary digits最后两个2进制位Input an second lastif aneger number and then output its last binary digit and eger digit, separated by a single empty space. eger is divided by 2, its second last binary digititses it last binary digit.输入一个整数并输出它的最后一
13、位2进制位和倒数第二位2进制位,中间用一个空格隔开。提示:当一个整数被除2,它的倒数第二位2进制位将变成它的最后一位2进制位。EX2LE INPUTEXLE OUTPUT0 1主程序1 #include source 程序文本框测试数据12345678910111213141516171819202122#include using namespatd;/*This function inputs aneger and output its last binary digit and its second last binary digit.*/main() / input the numbe
14、r number;cin number;/ output its last binary digit and an empty space cout number % 2 ;/ make the second last binary digit the last binary digit number /= 2;/ output the new last (theinal second last) binary digit cout number % 2;保存和测试测试输出Exercise 1.8Test equality测试相等Input two otherwise.egers.Output
15、 theeger if they are equal, output 0H: if bool equals = (number1 = number2),then we can obtain a 0 the two numbers are notby converting quals to aneger value whenequal, and obtain a 1 otherwise.输出两个整数。如果它们相同则输出整数的值,否则输出0。提示:如果bool equals = (number1 = number2),在两个数不相同的时候获得一个0,其它时候获得一个1。可以把quals转换为一个整
16、数而EXLE INPUT 110 10EX10LE OUTPUT 1EX10 20LE INPUT 2EXLE OUTPUT 20主程序1 #include source 程序12345#include using namespatd;/*This function inputs twoeger variables,文本框测试数据保存和测试测试输出Exercise 1.9Consecutive characters连续的字符Input an English letter character characters.输出一个英文字符并打印出它后面的3个字符and prout its followi
17、ng threeEXCLE INPUTEXDEFLE OUTPUT6and then outputs one of them if the twoegers are equal. It outputs 0 otherwise.*/main() 789/ input twoeger variablesnumber1;number2;cin number1 number2; 14/ test equalitybool equals = (number1 = number2); 17/ obtain aneger 1 if equals, 0 otherwisetimes = equals; 20/ output 0 if not equalcout (number1 * times); 23 主程序1 #include source 程序文本框测试数据保存和测试测试输出保存于 16:26.42导出123456789101112#include using namespatd;/*This function inputs an English letter character a
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 工程测量劳动合同
- 出口货物报关代理合同
- 正式公司转让合同格式
- 2024年广告位合同范本
- 2024贷款还款协议书
- 家庭装修项目协议书样本
- 2024年单位租车协议书样本
- 建设工程地基处理协议书
- 权威委托代理合同范文大全
- 房屋拆迁合同经典版本
- 药品批发企业承运商审计报告
- 2024年农业农村部大数据发展中心第三批面向社会公开招聘7人(高频重点复习提升训练)共500题附带答案详解
- 城市梁桥拆除工程安全技术规范
- 《食品添加剂应用技术》第二版 课件 任务1.2 食品添加剂使用标准检索-1标准解读
- 河北省保定市劳动合同范本
- 脱硫计算公式
- 中国儿童有声读物行业市场现状分析及竞争格局与投资发展研究报告2024-2029版
- 二年级100以内加减乘除混合口算题(直接打印)
- 医院大中型设备成本效益分析表格
- 青春期性教育知识完整版课件
- 新课标“物联网实践与探索”模块教学设计与实施
评论
0/150
提交评论