概述
第一章 绪论
1
在屏幕上输出“hello! welcome to computer world!”(50分)
在屏幕上输出“hello! welcome to computer world!”
提示:
-
注意所有符号都是英文,最后没有回车。
-
将要求输出字符串之外的所有printf或者cout的输出全部删除
-
将return 0;之前的getchar();或者system("pause");等暂停程序运行的输出都删除。
-
提交之前先在自己的开发环境下运行成功再拷贝到作业区提交。
-
输出的语句最好拷贝到程序中,避免不小心的键盘按键错误输入造成扣分。
-
中国大学MOOC平台的输入输出用scanf,printf,不要使用scanf_s,printf_
#include<stdio.h>
int main()
{
printf("hello! welcome to computer world!");
}
2
多行打印(50分)
打印下面的3行数据:
Please display these words:
1. press return keyboard to enter the game.
2. press esc keyboard to exist the game.
-
注意所有符号都是英文,最后一行的句号后面最后没有回车。
-
将要求输出字符串之外的所有printf或者cout的输出全部删除
-
将return 0;之前的getchar();或者system("pause");等暂停程序运行的输出都删除。
-
提交之前先在自己的开发环境下运行成功再拷贝到作业区提交。
-
输出的语句最好拷贝到程序中,避免不小心的键盘按键错误输入造成扣分。
-
1.和2.后面有一个空格。
#include<stdio.h>
int main()
{
printf("Please display these words:n");
printf("1. press return keyboard to enter the game.n");
printf("2. press esc keyboard to exist the game.n");
}
最后
以上就是留胡子烤鸡为你收集整理的MOOC 电子科技大学 程序设计基础(C&C++)第一章 测验/作业的全部内容,希望文章能够帮你解决MOOC 电子科技大学 程序设计基础(C&C++)第一章 测验/作业所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复