Скачиваний:
0
Добавлен:
04.01.2025
Размер:
343 б
Скачать
#include iostream
using namespace std;
void time(int, int);
 
 
int main()
{
    int h;
    cout  Enter the number of hours ;
    cin  h;
    int m;
    cout  Enter the number of minutes ;
    cin  m;
    time(h, m);
    cin.get();
    cin.get();
    return 0;
}
void time(int j, int k) 
{
    cout  Time   j    k  endl;
}
Соседние файлы в папке Практика 2