This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
main() | |
{ | |
printf("Opérations arithmétiques sur deux nombres entiers:\n"); | |
printf("--------------------------------\n"); | |
int a,b,S,So,M,D; | |
printf("Entrez le premier nombre: "); | |
scanf("%d",&a); | |
printf("Entrez le deuxième nombre: "); | |
scanf("%d",&b); |
NewerOlder