- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main (void){
- int sec,min,hour,johnny;
- cout <<"請輸入all time"<<endl;
- cin >> johnny;
-
- hour=johnny/(60*60),johnny=johnny-(hour*60*60);
- min=johnny/60,johnny=johnny-(min*60);
- sec=johnny;
- cout<<endl;
- cout <<"*******hour******* = "<<hour<<endl;
- cout <<endl;
- cout <<"*******minute******* = "<<min<<endl;
- cout <<endl;
- cout <<"*******second******* = "<<sec<<endl;
- cout <<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |