結果

問題 No.552 十分簡単な星1の問題
ユーザー Maeda
提出日時 2025-03-07 15:58:42
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 24,704 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 15:58:45
合計ジャッジ時間 2,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:12: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration]
    9 |         if(strcmp(num,"0") != 0){
      |            ^~~~~~
main.c:2:1: note: include ‘<string.h>’ or provide a declaration of ‘strcmp’
    1 | #include <stdio.h>
  +++ |+#include <string.h>
    2 | 

ソースコード

diff #

#include <stdio.h>

void main(void){
	char num[100] = "a";
	int input = scanf("%s",num);
	if(input == 2){
		printf("入力ミス\n");
	}
	if(strcmp(num,"0") != 0){
		printf("%s",num);
	}
	printf("0\n");
}
0