結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | Haijinn |
提出日時 | 2016-07-20 21:26:43 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 150 bytes |
コンパイル時間 | 808 ms |
コンパイル使用メモリ | 19,456 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-15 17:56:22 |
合計ジャッジ時間 | 699 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
コンパイルメッセージ
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,&s); | ^~~~~~~~~~~~~~~~~~~ main.c:8:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%s",ap); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ int a; int s; char ap[1000]; scanf("%d%d",&a,&s); scanf("%s",ap); printf("%d%d",a,s); printf("%s",ap); return 0; }