結果

問題 No.410 出会い
ユーザー nxterunxteru
提出日時 2017-03-23 15:45:25
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 27,132 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-19 08:50:58
合計ジャッジ時間 1,203 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: 関数 ‘main’ 内:
main.c:5:14: 警告: 関数 ‘abs’ の暗黙的な宣言です [-Wimplicit-function-declaration]
    5 | printf("%f",(abs(c-a)+abs(d-b))/2);
      |              ^~~
main.c:2:1: 備考: include ‘<stdlib.h>’ or provide a declaration of ‘abs’
    1 | #include <stdio.h>
  +++ |+#include <stdlib.h>
    2 | int main(){
main.c:5:19: 警告: ‘abs’ argument 1 promotes to ‘double’ where ‘int’ is expected in a call to built-in function declared without prototype [-Wbuiltin-declaration-mismatch]
    5 | printf("%f",(abs(c-a)+abs(d-b))/2);
      |                  ~^~
<組み込み>: 備考: built-in ‘abs’ declared here
main.c:5:28: 警告: ‘abs’ argument 1 promotes to ‘double’ where ‘int’ is expected in a call to built-in function declared without prototype [-Wbuiltin-declaration-mismatch]
    5 | printf("%f",(abs(c-a)+abs(d-b))/2);
      |                           ~^~
<組み込み>: 備考: built-in ‘abs’ declared here

ソースコード

diff #

#include <stdio.h>
int main(){
float a,b,c,d;
scanf("%d%d%d%d",&a,&b,&c,&d);
printf("%f",(abs(c-a)+abs(d-b))/2);
return 0;
}
0