rustic-sysy/sysy_sets/17_div.sy

7 lines
79 B
Plaintext
Executable File

//test div
int main(){
int a, b;
a = 10;
b = 5;
return a / b;
}