sdsdfd
fsdfsdfsdfdsunknown
c_cpp
4 years ago
393 B
8
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;
}
Editor is loading...