結果

問題 No.9000 Hello World! (テスト用)
ユーザー UoMJ3E5VRmVwkKz
提出日時 2018-01-31 15:32:52
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 117 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 23:47:38
合計ジャッジ時間 667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:15: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         system("pause");
      |         ~~~~~~^~~~~~~~~

ソースコード

diff #

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

int main() {

	printf("Hello World!\n");

	system("pause");
	return 0;
}






0