【課題2− 6】 提出課題(1) 下のプログラムは身長と体重を入力してローレル指数を判定するものである.表にしたがって下の空欄A〜Iを埋めよ. ローレル指数 結果  100未満 やせすぎ  100以上115未満 やせている  115以上145未満 普通  145以上160未満 太っている  160以上 太りすぎ   #include int main(void) { double rohrer, height, weight; printf("Input height : "); scanf("%lf", &height); printf("Input weight : "); scanf("%lf", &weight); // ローレル指数に基づき判定する. rohrer = weight / (height * height * height) * 10000000; 「 A 」(rohrer 「 B 」) printf("You are too thin.¥n"); 「 C 」(rohrer 「 D 」) printf("You are thin.¥n"); 「 E 」(rohrer 「 F 」) printf("You are normal.¥n"); 「 G 」(rohrer 「 H 」) printf("You are fat.¥n"); 「 I 」 printf("You are too fat.¥n"); return 0; } 【実行結果例】 Input height : 167 Input weight : 65 You are normal. 【解説とヒント】 多方向分岐でも,選択範囲が整数値で特定できない場合にはif~else if~elseを用いる.