题目:
实验1-7 What is a computer? (5分)
题目要求:
本题要求编写程序,输出一个短句“What is a computer?”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“What is a computer?”。
解题代码:
#include<stdio.h>
int main()
{
printf( "What is a computer?\n" );
return 0;
}
实验1-7 What is a computer? (5分)
本题要求编写程序,输出一个短句“What is a computer?”。
本题目没有输入。
在一行中输出短句“What is a computer?”。
#include<stdio.h>
int main()
{
printf( "What is a computer?\n" );
return 0;
}