Advertisement
Xioth

C - TP1 - bonjour.c

Jan 17th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     // Dit bonjour !
  7.     printf("Bonjour !\n");
  8.  
  9.     // Demande son รขge et dit bonjour !
  10.     int age = 0;
  11.  
  12.     printf("Quel est votre age ?\n");
  13.     scanf("%d", &age);
  14.     printf("Bonjour ! Vous avez %d ans.\n", age);
  15.  
  16.     system("pause");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement