QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#77809#5504. Flower GardenchenshiCompile Error//C++97b2023-02-15 17:21:402023-02-15 17:21:42

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-15 17:21:42]
  • 评测
  • [2023-02-15 17:21:40]
  • 提交

answer

#include<cstdio>
using namespace std;
int main(){
	printf("TAK\nRFF\nTAK\nRFF")
	return 0;
}

Details

answer.code: In function ‘int main()’:
answer.code:4:37: error: expected ‘;’ before ‘return’
    4 |         printf("TAK\nRFF\nTAK\nRFF")
      |                                     ^
      |                                     ;
    5 |         return 0;
      |         ~~~~~~