Create 1766.c

pull/22/head
Kirigaya Kazuto 2016-07-01 18:17:06 +08:00 committed by GitHub
parent eafef4bac8
commit 8ba3c9f5b2
1 changed files with 15 additions and 0 deletions

15
QUSTOJ/1766.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
#include <stdlib.h>
char a[256];
char b[256];
char c[256];
int main()
{
for(int i=0;i<5;i++)
{
scanf("%s %s %s",a,b,c);
printf("%s %s %s\n",a,b,c);
}
return 0;
}