WAP to convert any ting from hours to seconds
using oop concept
Answers
Answered by
1
Answer:
Program for converting hours into minutes and seconds
Given an integer n which is the number of hours, the task is to convert it into minutes and seconds.
Examples:
Input: 5
Output: Minutes = 300, Seconds = 18000
Input: 2
Output: Minutes = 120, Seconds = 7200
Similar questions