Computer Science, asked by pallavikhatri100, 2 months ago

How to convert 365 minutes into hours in QBASIC programing??

Answers

Answered by yashu5421
1

Answer:

CLS

CLSINPUT "Enter number of minutes"; m

CLSINPUT "Enter number of minutes"; mhr = m \ 60

CLSINPUT "Enter number of minutes"; mhr = m \ 60mi = m MOD 60

CLSINPUT "Enter number of minutes"; mhr = m \ 60mi = m MOD 60PRINT m; " minutes = "; hr; " hours and "; mi; " minutes."

Hope this helps❤️

Similar questions