记录详情

Compile Error

/in/foo.c: In function 'main':
/in/foo.c:5:9: error: 'cin' undeclared (first use in this function)
    5 |         cin>>xmin>>xmax;
      |         ^~~
/in/foo.c:5:9: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:6:36: error: expected ';' before 'int'
    6 |         scanf("%d %d",&xmin, &xmax)
      |                                    ^
      |                                    ;
    7 |         int digitCount[10] = {0};
      |         ~~~                         
/in/foo.c:9:9: warning: implicit declaration of function 'countDigits' [-Wimplicit-function-declaration]
    9 |         countDigits(i, digitCount);
      |         ^~~~~~~~~~~
/in/foo.c:9:24: error: 'digitCount' undeclared (first use in this function)
    9 |         countDigits(i, digitCount);
      |                        ^~~~~~~~~~
/in/foo.c:19:9: error: 'cout' undeclared (first use in this function)
   19 |         cout<<"%d\n", mostFrequentDigit<<endl;
      |         ^~~~
/in/foo.c:19:42: error: 'endl' undeclared (first use in this function)
   19 |         cout<<"%d\n", mostFrequentDigit<<endl;
      |                                          ^~~~
/in/foo.c:19:21: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   19 |         cout<<"%d\n", mostFrequentDigit<<endl;
      |                     ^

信息

递交者
类型
递交
题目
3-1 整数中的数字
比赛
2025年春 南师大《程序设计与竞赛》作业赛第三场
语言
C
递交时间
2025-03-22 20:02:51
评测时间
2025-03-22 20:02:51
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes