sysy/functional_c/sy/17_div.sy

8 lines
98 B
Plaintext

#include "sylib.h"
//test div
int main(){
int a, b;
a = 10;
b = 5;
return a / b;
}