- 437 名前:デフォルトの名無しさん mailto:sage [2008/11/08(土) 17:11:44 ]
- >>435
#include<stdio.h> int main(void) { int x; char s[1000]; double h, w; printf("学生番号を半角小文字整数で入力;\t"); scanf("%d",&x); printf("氏名を入力する;\t"); scanf("%s", s); printf("身長を入力する;\t"); scanf("%lf", &h); printf("体重を入力する;\t"); scanf("%lf", &w); printf("学生番号: %d\n", x); printf("氏名: %s\n", s); printf("身長: %f\n", h); printf("体重: %f\n", w); printf("身長 + 体重: %f\n", h + w); return 0; }
|

|