这次真的没骗你 —— 这道超级简单的题目没有任何输入。
你只需要在一行中输出事实:This is a simple problem.
就可以了。
输入样例:
无
输出样例:
This is a simple problem.
解题步骤:
1 题目说的对特别简单 打印一下就可以了
C语言代码:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("This is a simple problem.\n");
return 0;
}