QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#569074#4829. Mark on a GraphluqyouCompile Error//C++1481b2024-09-16 20:20:152024-09-16 20:20:16

Judging History

你现在查看的是最新测评结果

  • [2024-09-16 20:20:16]
  • 评测
  • [2024-09-16 20:20:15]
  • 提交

answer

#import<time.h>
main(){int t=time(0);puts(t&1?"mark 0":"ok");while(t==time(0));}

詳細信息

answer.code:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated]
    1 | #import<time.h>
      |  ^~~~~~
answer.code:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main(){int t=time(0);puts(t&1?"mark 0":"ok");while(t==time(0));}
      | ^~~~
answer.code: In function ‘int main()’:
answer.code:2:22: error: ‘puts’ was not declared in this scope
    2 | main(){int t=time(0);puts(t&1?"mark 0":"ok");while(t==time(0));}
      |                      ^~~~