adambkehl

Assignment #1 (2/4) - Page 63 #7

Feb 22nd, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void display(int, int);
  5.  
  6. int main() {
  7.     int hour, minute;
  8.     cout << "Enter the number of hours: ";
  9.     cin >> hour;
  10.     cout << endl << "Enter the number of minutes: ";
  11.     cin >> minute;
  12.     display(hour, minute);
  13. }
  14.  
  15. void display(int h, int m) {
  16.     cout << "Time: " << ":" << m << endl;
  17. }
Add Comment
Please, Sign In to add comment