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

8 lines
85 B
Plaintext

#include "sylib.h"
//test rem
int main(){
int a;
a = 10;
return a % 3;
}