IO-05. 输出短句I(5)
时间限制
100 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
来源
ZOJ
本题要求编写程序,输出一个短句“Programming in C is fun!”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“Programming in C is fun!”。
#include <stdio.h>
int main()
{
printf("Programming in C is fun!\n");
return 0;
}
IO-06. 输出短句II(5)
时间限制
100 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
来源
ZOJ
本题要求编写程序,输出一个短句“What is a computer?”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“What is a computer?”。
#include <stdio.h>
int main()
{
printf("What is a computer?\n");
return 0;
}
IO-07. 输出短句III(5)
时间限制
100 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
来源
ZOJ
本题要求编写程序,输出一个短句“Welcome to You!”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“Welcome to You!”。
#include<stdio.h>
int main()
{
printf("Welcome to You!\n");
return 0;
}