/
rgd045
/
cpp-oop-basics
Обзор
Документация
Войти
/
rgd045
/
cpp-oop-basics
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
projects/time_example/main.cpp
14 строк
398 B
OMP Education
Add modules
28 июн 2024, 01:09
28 июн 2024, 01:09
0ef3df8
Код
Авторство
О чём код?
// SPDX-FileCopyrightText: 2023 Open Mobile Platform LLC <edu@omp.ru> // SPDX-License-Identifier: BSD-3-Clause #include <iostream> int main() { int totalSeconds {4555}; int seconds {totalSeconds % 60}; int minutes {totalSeconds / 60}; int hours {minutes / 60}; std::cout << "Elapsed time: " << hours << ":" << minutes % 60 << ":" << seconds << std::endl; return 0; }