結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー UoMJ3E5VRmVwkKzUoMJ3E5VRmVwkKz
提出日時 2018-01-31 16:10:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 24,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-09 12:40:55
合計ジャッジ時間 424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:17: warning: format ‘%s’ expects argument of type ‘char*’, but argument 2 has type ‘char (*)[10]’ [-Wformat=]
   12 |         scanf("%s", &s,10);
      |                ~^   ~~
      |                 |   |
      |                 |   char (*)[10]
      |                 char*
main.cpp:12:15: warning: too many arguments for format [-Wformat-extra-args]
   12 |         scanf("%s", &s,10);
      |               ^~~~
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d", &a);
      |         ~~~~~^~~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d", &b);
      |         ~~~~~^~~~~~~~~~
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%s", &s,10);
      |         ~~~~~^~~~~~~~~~~~~
main.cpp:20:15: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         system("pause");
      |         ~~~~~~^~~~~~~~~

ソースコード

diff #

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

int main() {
	int a = 0;
	int b = 0;
	char s[10];

	scanf("%d", &a);
	scanf("%d", &b);

	scanf("%s", &s,10);


	printf("%d\t", a + b);
	
	for (int i = 0; i < 10; i++) {
		printf("%c", s[i]);
	}
	system("pause");
	return 0;
}
0