返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {     
  6.    int total,cm,givingmoney;
  7.    cout<<"***intelligent money-giving machine***"<<endl;
  8.    cout<<"the purchase cost:"<<endl;   
  9.    cin>>total;
  10.    cout<<"customers shell out:"<<endl;
  11.    cin>>cm;   
  12.    givingmoney=cm-total;  
  13.    cout<<"you need to give: "<<givingmoney<<endl;
  14.    if(givingmoney<0)
  15.    {
  16.     cout<<"your money is not enough!you need to pay"<<-givingmoney<<"dollars"<<endl;               
  17.    }
  18.    if(givingmoney==0)
  19.    {
  20.    cout<<"you pay the same!thanks!"<<endl;         
  21.    }else
  22.    {
  23.    if(givingmoney>=500)
  24.    {
  25.     cout<<"500 dollar bills: "<<givingmoney/500<<" piece"<<endl;
  26.     givingmoney=givingmoney%500;                     
  27.    } if(givingmoney>=100)
  28.    {
  29.     cout<<"100 dollar bills: "<<givingmoney/100<<" piece"<<endl;
  30.     givingmoney=givingmoney%100;                     
  31.    } if(givingmoney>=50)
  32.    {
  33.     cout<<"50 dollar coin: "<<givingmoney/50<<" cookie"<<endl;
  34.     givingmoney=givingmoney%50;                     
  35.    } if(givingmoney>=10)
  36.    {
  37.     cout<<"10 dollar coin: "<<givingmoney/10<<" cookie"<<endl;
  38.     givingmoney=givingmoney%10;                     
  39.    }if(givingmoney>=5)
  40.    {
  41.     cout<<"5 dollar coin: "<<givingmoney/5<<" cookie"<<endl;
  42.     givingmoney=givingmoney%5;                     
  43.    }if(givingmoney>=1)
  44.    {
  45.     cout<<"1 dollar coin: "<<givingmoney/1<<" cookie"<<endl;
  46.     givingmoney=givingmoney%1;                     
  47.    }if(givingmoney=total)
  48.    {
  49.     cout<<"you pay the same,thanks!"<<endl;                     
  50.    }if(givingmoney<total)
  51.    {
  52.     givingmoney=total-givingmoney;                     
  53.     cout<<"that is not enough,YOU NEED TO PAY:"<<givingmoney<<"dollar smore"<<endl;                     
  54.    }
  55.    }
  56.    system("pause");
  57.    return 0;
  58. }
複製代碼

TOP

返回列表