Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. double converse(double europe){
  4. return europe*6.5;
  5. }
  6. int main(int argc, char *argv[]){
  7. double m=0.0;
  8. int b=0;
  9. printf("argent donne");
  10. scanf("%lf", &m);
  11. printf("converseion %lf", converse(m));
  12. printf("encore? 1 oui 0 non");
  13. scanf("%d", &b);
  14. if (b==0){
  15. return 0;
  16. }
  17. else return;
  18. }
Add Comment
Please, Sign In to add comment