first commit

This commit is contained in:
juan 2021-09-23 08:25:01 +08:00
commit e8d9d0751b
2 changed files with 44 additions and 0 deletions

38
dialogue.c Normal file
View file

@ -0,0 +1,38 @@
/*****************************************
*
*
*
*
*
*
*
*
*
* microphone
*
*
*
* scanf
* printf
*
*
*
*
*
*
*
*
* ****************************************/
#include <stdio.h>
int main() {
char greating[20];
char name[20];
scanf("%s", greating);
printf("你叫什么名字?\n");
scanf("%s", name);
printf("你好,%s\n", name);
return 0;
}

6
starter.c Normal file
View file

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("hello world\n");
return 0;
}