BUPT-homework/pset1/2-stdio.c

17 lines
300 B
C
Raw Normal View History

2021-09-23 16:18:59 +08:00
#include <stdio.h>
2021-09-26 11:19:13 +08:00
int main(void) {
// initialization
char sex;
int age;
float height;
2021-09-23 16:18:59 +08:00
2021-09-26 11:19:13 +08:00
// get input from stdin
scanf("%c %i %f", &sex, &age, &height);
// print answer to stdout
printf("The sex is %c, the age is %i, and the height is %f.", sex, age,
height);
return 0;
2021-09-23 16:18:59 +08:00
}