C语言实验——输出字符串
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
在屏幕上输出一行信息:This is a C program.
Input
无输入数据。
Output
输出字符串This is a C program.
Example Input
Example Output
This is a C program.
Hint
Author
wy
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("This is a C program.\n");
return 0;
}
/***************************************************
User name: jk160115赵鑫源
Result: Accepted
Take time: 0ms
Take Memory: 164KB
Submit time: 2017-07-20 11:12:35
****************************************************/