Пусть таймер показывает время в секундах. Напишем программу, переводящую время в минуты и секунды.
var c,m,s : Integer;
begin
write('введите с=');
readln(c);
m:= c div 60;
s:= c mod 60;
write(m, ':', s)
end.
Задача 2
Дан возраст v в месяцах.
Вывести этот возраст в годах и месяцах.
(Например, v=68 мес, надо вывести 5 лет 8 мес)
Вариант 1
Заполните пропуски в программе
Вариант 2
Заполните пропуски в программе
Вариант 1
Составим программу, которая переводит длину из сантиметров в метры и сантиметры
(Например, 145 см, надо вывести 1 м 45 см)
Login or Sign Up
Login
Sign Up
Forgot password?
Enter your email and we'll send you reset instructions
Please introduce yourself to proceed
My Uploads
Score:
Embed HTML
Many sites and online services, like Google Maps, suggest HTML code (usually iframes) to embed widgets and content on your page.
You can add such HTML widgets in your quizzes.
Please note:
In case pasted code is not just iframe tag it will be wrapped into HTTPS iframe.
Only HTTPS sources for iframes, styles and javascript links are supported.
Non-HTTPS sources will be blocked by the browser and won't behave properly.