CompilerSysY/testcases/functional/20_rem.sy
2023-04-30 00:57:11 +08:00

6 lines
65 B
Plaintext

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