#include <stdio.h> #include <string.h> int main() { float weigh, volume; int size, letters; char name[40]; printf("What's your name ?\n"); scanf("%s", name); printf("%s,and your weight ?\n", name); scanf("%f", &weigh); return 0; }What's your name ?
demo
,and your weight ?
请按任意键继续. . .