QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#620696 | #9320. Find the Easiest Problem | C0pyCat | Compile Error | / | / | C11 | 130b | 2024-10-07 20:28:53 | 2024-10-07 20:28:54 |
Judging History
answer
#include <stdio.h>
int main() {
int x = 2022;
int y = 2023;
y = (x = x < x + y || y = y > y - x);
printf("%d %d",x,y);
}
Details
answer.code: In function ‘main’: answer.code:5:26: error: lvalue required as left operand of assignment y = (x = x < x + y || y = y > y - x); ^