結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー demudemu
提出日時 2014-11-23 13:58:20
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 24,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 21:35:31
合計ジャッジ時間 618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i, n;

    scanf("%d",&n);

    for (i=1; i<= n; i++) {
         if (i % 15== 0) {
            printf("Fizz \nBuzz\n");
         }
         else if (i % 3 == 0)  {
                printf("Fizz\n");
         }
         else if (i % 5 == 0)  {
                printf("Buzz\n");
         }
         else {
                printf("%d\n",i);
         }
    }
    return 0;
}
0