इनपुट को घंटों के रूप में दिया गया है और कार्य घंटों की संख्या को मिनट और सेकंड में बदलना और संबंधित परिणाम प्रदर्शित करना है
घंटों को मिनट और सेकंड में बदलने के लिए इस्तेमाल किया जाने वाला फॉर्मूला है -
1 hour = 60 minutes Minutes = hours * 60 1 hour = 3600 seconds Seconds = hours * 3600
उदाहरण
Input-: hours = 3 Output-: 3 hours in minutes are 180 3 hours in seconds are 10800 Input-: hours = 5 Output-: 5 hours in minutes are 300 5 hours in seconds are 18000
नीचे दिए गए कार्यक्रम में उपयोग किया गया दृष्टिकोण इस प्रकार है -
- एक पूर्णांक चर में घंटों की संख्या दर्ज करें मान लें n
- घंटों को मिनट और सेकंड में बदलने के लिए ऊपर दिए गए रूपांतरण के सूत्र को लागू करें
- परिणाम प्रदर्शित करें
एल्गोरिदम
START Step 1-> declare function to convert hours into minutes and seconds void convert(int hours) declare long long int minutes, seconds set minutes = hours * 60 set seconds = hours * 3600 print minute and seconds step 2-> In main() declare variable as int hours = 3 Call convert(hours) STOP
उदाहरण
#include <bits/stdc++.h> using namespace std; //convert hours into minutes and seconds void convert(int hours) { long long int minutes, seconds; minutes = hours * 60; seconds = hours * 3600; cout<<hours<<" hours in minutes are "<<minutes<<endl<<hours<<" hours in seconds are "<<seconds; } int main() { int hours = 3; convert(hours); return 0; }
आउटपुट
3 hours in minutes are 180 3 hours in seconds are 10800