- 1、本文档共25页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
4章键盘输入和屏幕输出
第4章 键盘输入和屏幕输出 4.1 基本输入输出操作的实现 如何进行数据的输入输出? 输入:从标准输入设备上输入数据到计算机内存 输出:将计算机内存中的数据送到标准输出设备 C语言中输入输出操作通过调用标准库函数来实现 #include stdio.h 在当前目录和编译工具指定的系统目录中找该文件 #include stdio.h 在由编译工具指定的系统目录中找该文件 4.1 字符输入输出函数 字符输出函数 putchar(ch) 输出一个字符ch,写到屏幕当前光标位置; 可以是任意的ASCII字符; 字符输入函数 getchar() 无参数 函数值为从输入设备接收的字符 按回车键表示输入结束。 4.2 格式输出函数 格式输出函数 printf(格式控制字符串, 输出项列表); 输出若干个任意类型的数据 printf(a=%d b=%f, a, b); 例子; printf(“Welcome!); printf(%d%f, a, b); printf(a=%d,b=%f, a, b); 格式输入函数 格式输入函数 scanf(格式控制字符串, 地址列表); scanf(%d,%f”, a,b); 格式输入函数 常见错误 scanf(%d,%f\n”,a,b); scanf(%d,%f”,a,b); scanf(%7.2f,a); #include stdio.h main() { int a, b; printf(Please input a and b:); scanf(%d%d, a, b); printf(a=%d, b=%d, a+b=%d\n,a,b,a+b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; scanf(%d %d, a, b); printf(a = %d, b = %d\n, a, b); } #include stdio.h main() { int a, b; printf(Please input a and b:); scanf(%2d%*2d%2d, a, b); printf(a=%d, b=%d, a+b=%d\n,a,b,a+b); } #include stdio.h main() { int a, b; printf(Please input a and b:); scanf(%2d%2d, a, b); printf(a=%d, b=%d, a+b=%d\n,a,b,a+b); } 这一章我们学习了 字符输入函数getchar() 字符输出函数putchar() 格式输入函数scanf() 格式输出函数printf() 格式控制问题——难点 几点忠告 不要拘泥于细节 不要死记硬背 在使用中慢慢掌握 课后作业 教材P61 习题:本章实验题。 要求:上机编写程序,然后形成书面作业(可打印) 下次上课前提交。 * * * 西南财经大学 经济信息工程学院 王磊 wanglei_t@swufe.edu.cn #include stdio.h main() { char ch; printf(Press a key and then press Enter:); ch = getchar();
文档评论(0)