mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-19 10:54:36 +00:00
f7cad29eef
Squash from a494eed to 1974b83 by virusdefender
15 lines
200 B
C
15 lines
200 B
C
/*
|
|
* 正常运行的程序
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
char input[100];
|
|
scanf("%s", input);
|
|
printf("%s\n", input);
|
|
printf("Hello world");
|
|
return 0;
|
|
} |