Guest User

Untitled

a guest
Nov 20th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. void liikenne (int tunnit)
  2. {
  3. if ( tunnit>=6 && tunnit<9 ) {
  4. }
  5. if (tunnit>=15 && tunnit<19) {
  6. cout << "Ruuhka-aika!" ;
  7. } else {
  8. cout << "Iloista matkaa!" ;
  9. }
  10. }
  11.  
  12. int main()
  13. {
  14.  
  15. cout << "Anna kellonajasta tunti (esim 16): ";
  16. int tunnit = 0;
  17.  
  18. cin >> tunnit;
  19.  
  20. liikenne(tunnit) ;
  21.  
  22.  
  23. return EXIT_SUCCESS;
  24.  
  25. }
Add Comment
Please, Sign In to add comment