QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#421987#3836. So I'll Max Out My Constructive Algorithm SkillsGuanYunchangCompile Error//C11351b2024-05-26 15:58:032024-05-26 15:58:04

详细

answer.code: In function ‘main’:
answer.code:21:17: error: ‘std’ undeclared (first use in this function)
   printf("%d\n",std::min(s1,s2));
                 ^~~
answer.code:21:17: note: each undeclared identifier is reported only once for each function it appears in
answer.code:21:20: error: expected ‘)’ before ‘:’ token
   printf("%d\n",std::min(s1,s2));
                    ^
                    )
answer.code:7:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&T);
  ^~~~~~~~~~~~~~
answer.code:11:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d",&n,&m);
   ^~~~~~~~~~~~~~~~~~~
answer.code:12:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s",c+1);
   ^~~~~~~~~~~~~~~