Source Code :
#include <iostream>
using namespace std;
int main(){
int jumlahDetik;
int jam;
int menit;
int detik;
//input detik//
cout<<" Converter Detik"<<endl<<endl;
cout<<" Masukan Jumlah Detik = ";
cin>>jumlahDetik;
//Proses perhitungan//
jam = jumlahDetik / 3600;
menit = (jumlahDetik % 3600) / 60;
detik = (jumlahDetik % 3600) % 60;
//Output//
cout<<endl<<endl<<" Hasil Convert Dari "<<jumlahDetik<<" Detik Adalah\n "<<endl<<endl;
cout<<" "<<jam<<" Jam "<<menit<<" Menit "<<detik<<" Detik "<<endl<<endl;
system("pause");
}
Semoga Bermanfaat :) :)
No comments:
Post a Comment