corrections-fiche-tp-1-bonjour by personne 18 août 2022 #include #include int main() { printf("bonjour \n"); system("pause"); return 0; } 0 comment 319 views 1 FacebookTwitter
corrections-fiche-tp-2-nombre-inverse by personne 18 août 2022 #include #include int main() { int a, b, c; printf("donner un entier de 3 chiffres \n"); scanf("%d",&a); c = a; b = (a%10)*100; a = a/10; b = b+(a%10)*10; a/=10; b+=a; printf("le nombre %d inverse est %d\n", c, b); system("pause"); return 0; } 0 comment 114 views 1 FacebookTwitter