結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | indexs5 |
提出日時 | 2016-10-09 19:56:40 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 140 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-22 00:23:12 |
合計ジャッジ時間 | 477 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d%d",&a,&b); | ^~~~~~~~~~~~~~~~~~~ main.c:8:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%s",&c); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ int a,b; char c; scanf("%d%d",&a,&b); scanf("%s",&c); printf("%d\n",(a+b)); printf("%s\n",&c); return 0; }