Computer Science, asked by narjisdoctar, 4 months ago

write a program to convert seconds in to corresponding number of hours, min and seconds.for example,7266sec.=2hrs.1min,6sec.?​

Answers

Answered by abhinavrajnair
0

Explanation:

have a nice day everyone; )

Answered by akshritpal
0

Answer:

cin>>time;

sec=time%60;

min=time/60;

hrs=time/3600;

cout<<hrs<<”hrs"<<min<<"min"<<sec<<"sec"

reverse cout-cin arrows I am not sure about them.

Similar questions