记录详情

Compile Error

foo.c: In function 'main':
foo.c:5:17: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'double *' [-Wformat=]
    5 |         scanf("%d%d",&x,&y);
      |                ~^    ~~
      |                 |    |
      |                 |    double *
      |                 int *
      |                %le
foo.c:5:19: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'double *' [-Wformat=]
    5 |         scanf("%d%d",&x,&y);
      |                  ~^     ~~
      |                   |     |
      |                   int * double *
      |                  %le
foo.c:6:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=]
    6 |         printf("%d\n",x+y);
      |                 ~^    ~~~
      |                  |     |
      |                  int   double
      |                 %f
foo.c:7:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=]
    7 |         printf("%d\n",x*y);
      |                 ~^    ~~~
      |                  |     |
      |                  int   double
      |                 %f
foo.c:8:24: error: invalid operands to binary % (have 'double' and 'double')
    8 |         printf("%d\n",x%y);
      |                        ^
[Hydro](https://hydro.ac)提供评测服务

信息

递交者
类型
递交
题目
P1078 xf1-1两数和、积、余
语言
C
递交时间
2022-10-05 23:20:01
评测时间
2022-10-05 23:20:01
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes