BUPT-homework/starter.c

21 lines
433 B
C
Raw Normal View History

2021-09-23 15:37:40 +08:00
/*+-+-+-+-+-+ +-+-+-+-+-+*/
/*|h|e|l|l|o| |w|o|r|l|d|*/
/*+-+-+-+-+-+ +-+-+-+-+-+*/
2021-09-23 08:25:01 +08:00
#include <stdio.h>
int main(void) {
2021-09-23 15:37:40 +08:00
// ask for a string
char greeting[20];
scanf("hello %s", greeting);
// output strings
2021-09-23 08:25:01 +08:00
printf("hello world\n");
2021-09-23 15:37:40 +08:00
printf("This is a string %s\n", greeting);
printf("this is a float %+5.2f\n", 3.14);
printf("this is a float %+5.2f\n", -3.14);
printf("this is a decimal %+d\n", 3);
2021-09-23 08:25:01 +08:00
return 0;
}