QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#620693#9320. Find the Easiest ProblemC0pyCatCompile Error//C11166b2024-10-07 20:27:252024-10-07 20:27:25

Judging History

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

  • [2024-10-07 20:27:25]
  • 评测
  • [2024-10-07 20:27:25]
  • 提交

answer

#include <iostream>
using namespace std;

int main() {
	int x = 2022;
	int y = 2023;
	y = (x = x < x + y || y = y > y - x);
	cout << x << "  " << y << endl;
}

详细

answer.code:1:10: fatal error: iostream: No such file or directory
 #include <iostream>
          ^~~~~~~~~~
compilation terminated.