bouchnina

calc1 et calc2

Apr 10th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.53 KB | None | 0 0
  1. /*
  2. لم أستعمل دالة pow
  3.  من مكتبة maths
  4.  لأنك لم تشرحها بعد
  5. */
  6. void main(){
  7.     int x = 0;
  8.     printf("Entrez Un nombre : ");
  9.     scanf("%d",&x);
  10.     printf("\nLe carre du %d est : %d",x,x*x);
  11.     system("pause");
  12. }
  13.  
  14. //======================  Calc 2 ==================
  15. void main(){
  16.     int a,b;
  17.     printf("Entrez Deux nombre en les separant par \' \' : ");
  18.     scanf("%d %d",&a,$b);
  19.     printf("\nLa somme de %d + %d est : %d\n",a,b,a+b);
  20.     printf("\nLe produit de %d + %d est : %d\n",a,b,a+b);
  21.     system("pause");
  22. }
Advertisement
Add Comment
Please, Sign In to add comment