Skip to content

Instantly share code, notes, and snippets.

View Ambratolm's full-sized avatar
🌙

Ambratolm Ambratolm

🌙
View GitHub Profile
@Ambratolm
Ambratolm / Opérations arithmétiques.c
Created June 24, 2017 21:57
Ecrire un algorithme qui calcul la somme, la soustraction, la multiplication et la division de deux nombres entiers a et b.
#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);