sysy-data/functional_c/sy/20_rem.sy

7 lines
66 B
Plaintext

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