BUPT-homework/dialogue.c

39 lines
1.3 KiB
C
Raw Normal View History

2021-09-23 08:25:01 +08:00
/*****************************************
*
*
*
*
*
*
*
*
*
* 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;
}