PTA 7-60 有志者,事竟成!
分数 5
作者 李祥
单位 湖北经济学院
请编写程序,输出下面的文字。
===========================================
Nothing is impossible to a willing heart!
输入样例
注:无输入。
输出样例
===========================================
Nothing is impossible to a willing heart!
===========================================
注:每行末尾没有多余的空白字符。
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
代码:
#include <stdio.h>
int main(){
printf("===========================================\n Nothing is impossible to a willing heart!\n===========================================\n");
//注意输出格式
return 0;
}
解题思路:
略
归属知识点:
输出格式