演習4ー6
問:右に示すように、読み込まれた整数値以下である正の偶数を順に表示するプログラムを作成せよ。
// Ex0406.c
#include <stdio.h>
int main(void)
{
int no;
int i = 0;
printf("正の整数値を入力せよ:");
scanf("%d", &no);
if (no >= 0) {
while (i <= no) {
printf("%d ", i);
i = i + 2;
}
printf("\n");
}
return 0;
}
コメント
特になし。
書籍情報
https://www.amazon.co.jp/新・明解C言語-入門編-第2版-柴田-望洋/dp/4815609799?_...
www.amazon.co.jp
コメント