Guest User

None

a guest
Mar 13th, 2012
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(void)
  3. {
  4.     int code_of_happiness;  
  5.    
  6.     printf(" Δώσε 0 για αποτυχία ή 1 για επιτυχία : ");
  7.     scanf("%d" , &code_of_happiness);   //save
  8.    
  9.     if(code_of_happiness == 0 )
  10.     printf(" Παντρέψου τον Αντουάν ");
  11.    
  12.     if(code_of_happiness == 1)
  13.     printf(" Παντρέψου Σέργιο");
  14.    
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment