本帖最後由 李泳霖 於 2024-1-24 09:29 編輯
將輸入的分鐘數,換算成幾天幾小時幾分鐘。
程式執行參考畫面如下:
格式固定是 _天, _小時, _分鐘,若欄位中的值剛好是0就顯示0。- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int t;
- cout<<"請輸入想換算的分鐘數: ";
- cin>>t;
- cout<<t<<"分鐘可換算為..."<<endl;
- cout<<t/(24*60)<<"天, ";
- t%=(24*60); //t=t%(24*60)
- cout<<t/60<<"小時, ";
- t%=60;
- cout<<t<<"分鐘"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |