Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - Shang plastic surgery
Shang plastic surgery
# include & ltstdio.h & gt

void main()

{

int x,y,z 1,z2,z3,z4,z5;

scanf("%d\n%d ",& ampx & amp; y);

z 1 = x+y;

z2 = x-y;

z3 = x % y; //Find the remainder

Z4 = x * y; //orthogonal

z5 = x/y; //Quotient

printf(" Result:\ n ");

printf("%d\n ",z 1);

printf("%d\n ",z2);

printf("%d\n ",z3);

printf("%d\n ",Z4);

printf("%d\n ",z5);

System ("suspended"); //This different compilation system may be different. If yours can't be compiled, delete this line! ! !

}