Files
information-processing-1_5t…/programs/p26/main.c

13 lines
213 B
C

#include <stdio.h>
int main(void) {
int height;
printf("Input your height in cm: ");
scanf("%d", &height);
printf("Standard weight is %.1fkg.\n", 0.9 * (double)(height - 100));
return 0;
}