SysYTestcases/functional_2021/025_rem.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

6 lines
65 B
Plaintext

//test rem
int main(){
int a;
a = 10;
return a % 3;
}