結果

問題 No.591 (^o^)/
ユーザー cnyankocnyanko
提出日時 2017-11-26 22:46:51
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 27,264 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 13:54:13
合計ジャッジ時間 586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:10:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
   10 |     f[0]="(";
      |         ^
main.c:14:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
   14 |     f[4]=")";
      |         ^
main.c:15:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
   15 |     f[5]="/";
      |         ^

ソースコード

diff #

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

int main(void){

    char e,m,f[6];
    scanf("%s",&e);
    scanf("%s",&m);

    f[0]="(";
    strcpy(&f[1],&e);
    strcpy(&f[2],&m);
    strcpy(&f[3],&e);
    f[4]=")";
    f[5]="/";
    puts(f);

    return 0;
}
0