#include <stdio.h>
int main() {
int a = 7, b = 3;
int s = a + b; // 10
printf("s = %d\n",s); // serve solo per visualizzare
int q = a / b; // 2 (divisione intera)
printf("q = %d\n",q); // serve solo per visualizzare
int r = a % b; // 1 (resto)
printf("r = %d\n",r); // serve solo per visualizzare
}
To embed this project on your website, copy the following code and paste it into your website's HTML: