bouchnina

i puissance i

Dec 7th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. long i;
  5. printf("entrer un nombre pour avoir son carre :");
  6. scanf("%ld",&i);
  7. printf("le carre du %ld est %ld\n",i,i*i);
  8. system("pause");
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment