Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- long i;
- printf("entrer un nombre pour avoir son carre :");
- scanf("%ld",&i);
- printf("le carre du %ld est %ld\n",i,i*i);
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment