sdsdfd

fsdfsdfsdfds
 avatar
unknown
c_cpp
3 years ago
393 B
2
Indexable
#include <iostream>

using namespace std;

int main()
{
    int hours, minutes;
    cout << "Введите час: ";
    cin >> hours;
    cout << "Введите минуты: ";
    cin >> minutes;
    if (hours > 23){
        hours = 0 + (hours - 24);}
    if (minutes >= 60){
        hours = hours + 1;
        minutes = 0 + (minutes - 60);
    }
    cout << hours << ":" << minutes;
}