結果

問題 No.400 鏡
ユーザー Maeda
提出日時 2025-03-07 17:59:37
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 25,472 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 17:59:39
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=]
    7 |         printf("入力された文字列:%s 文字数:%d\n",str,strlen(str));
      |                                              ~^        ~~~~~~~~~~~
      |                                               |        |
      |                                               int      size_t {aka long unsigned int}
      |                                              %ld
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%s",str);
      |         ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

void main(void){
	char str[100];
	scanf("%s",str);
	printf("入力された文字列:%s 文字数:%d\n",str,strlen(str));
	for(int i = strlen(str)-1; i < 0; i--){
		printf("%d文字目:",i);
		if(str[i] == '<'){
			printf(">\n");
		}else{
			printf("<\n");
		}
	}
}
0