Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

แปลงวินาทีเป็นวัน ชั่วโมง นาที และวินาทีใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมแปลงวินาทีเป็นวัน ชั่วโมง นาที และวินาที

สำหรับสิ่งนี้ เราจะได้รับจำนวนวินาทีแบบสุ่ม งานของเราคือการแปลงเป็นจำนวนวัน ชั่วโมง นาที และวินาทีที่เหมาะสมตามลำดับ

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
//converting into proper format
void convert_decimal(int n) {
   int day = n / (24 * 3600);
   n = n % (24 * 3600);
   int hour = n / 3600;
   n %= 3600;
   int minutes = n / 60 ;
   n %= 60;
   int seconds = n;
   cout << day << " " << "days " << hour
   << " " << "hours " << minutes << " "
   << "minutes " << seconds << " "
   << "seconds " << endl;
}
int main(){
   int n = 126700;
   convert_decimal(n);
   return 0;
}

ผลลัพธ์

1 days 11 hours 11 minutes 40 seconds