パソコンの隣ですぐに読める
書籍版苦C
#include <stdio.h>
int main(void)
{
int score;
printf("点数を入力して下さい:");
scanf("%d", &score);
if (score > 100) score = 100;
printf("点数は %d 点です。\n", score);
return 0;
}
if (score > 100) printf("入力が 100 より大きいので修正します。\n");
if (score > 100) score = 100;
{} で囲むことで、複数の文をまとめる方法。
ブロック文を使えば、if文の結果で、複数の処理を実行させることができます。
#include <stdio.h>
int main(void)
{
int score;
printf("点数を入力して下さい:");
scanf("%d", &score);
if (score > 100)
{
printf("入力が 100 より大きいので修正します。\n");
score = 100;
}
printf("点数は %d 点です。\n", score);
return 0;
}
苦しんで覚えるC言語(苦C)は
C言語入門サイトの決定版です。
C言語の基本機能を体系立てて解説しており、
市販書籍と同等以上の完成度です。