【課題2− 16 構文のネスト(1)】 次のプログラムの動作の流れを考えよ. #include int main(void) { int ten, percent; printf("授業の出席率は?(%):"); scanf("%d", &percent); if (percent >= 80) { printf("テストの点数は?:"); scanf("%d", &ten); if (ten >= 60) printf("合格です.¥n"); else printf("再試験です.¥n"); } else printf("補習です.¥n"); return 0; } 【実行結果例】 授業の出席率は?(%):85 テストの点数は?:58 再試験です. 【解説とヒント】 if文の中に別のif文が入っている(ネスト).