• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            天之道

            享受編程的樂趣。
            posts - 118, comments - 7, trackbacks - 0, articles - 0
              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            The credit card codes

            Posted on 2011-09-23 01:13 hoshelly 閱讀(296) 評論(0)  編輯 收藏 引用 所屬分類: C++


            Tonight I was studying the credit card codes, all of these was copied from my book,"C++ ——how to program".

            This are the program demand:
            1)Account number(an integer);
            2)Balance at the begining of the month;
            3)Total all items charged by this customer this month;
            4)Total of all items applied to this customer's account this month;
            5)Allowed credit limit.


            The program should input each of these facts, calculate the new balance(=begining balance+charges-credits) and determine if the new balance exceeds the customer credit limit.
            For those customers whose credit limit is exceeded, the program should display the customer's account number,credit limit,new balance and the message "Credit limit exceeded".

            #include<iostream>
            #include
            <iomanip>// formatting integers and the precision of floating point values
            using namespace std;

            int main()
            {
                
            int accountNumber;
                
            double balance,charges,credits,limit;

                cout
            <<"Enter account number(-1 to end):"
                    
            <<setiosflags(ios::fixed|ios::showpoint);// to convert data from fixed point number representation to floating point representation
                cin>>accountNumber;
                
            while(accountNumber!=-1)
                
            {
                    cout
            <<"Enter beginning balance:";
                    cin
            >>balance;
                    cout
            <<"Enter total charges: ";
                    cin
            >>charges;
                    cout
            <<"Enter total credits:";
                    cin
            >>credits;
                    cout
            <<"Enter credit limit:";
                    cin
            >>limit;
                    balance
            +=charges-credits;

                    
            if(balance>limit)
                        cout
            <<"Account:  "<<accountNumber
                            
            <<"\nCredit limit: "<<setprecision(2)<<limit //accurate to two decimal point
                            
            <<"\nBalance:    "<<setprecision(2)<<balance
                            
            <<"\nCredit Limit Exceeded.\n";
                    cout
            <<"\nEnter account number(-1 to end): ";
                    cin
            >>accountNumber;
                }


                cout
            <<endl;
                
            return 0;
            }


             

            input -1 and the program will be ended.

            伊人久久精品影院| 久久久久久综合一区中文字幕| 久久久精品国产Sm最大网站| 久久久久久极精品久久久 | 成人a毛片久久免费播放| 久久青青草原综合伊人| 久久AV高潮AV无码AV| 久久久久免费精品国产| 色综合久久久久综合体桃花网| 久久精品男人影院| www.久久精品| 2021久久精品国产99国产精品| 久久久久亚洲AV无码专区桃色| 性欧美丰满熟妇XXXX性久久久| 久久精品国产精品青草app| 久久精品国产亚洲av影院| 亚洲乱码中文字幕久久孕妇黑人| 伊人久久成人成综合网222| 精品久久久久久久久免费影院| 久久久久成人精品无码| 午夜精品久久久久久影视777| 三级片免费观看久久| 久久精品中文无码资源站| 久久久久亚洲精品日久生情| 伊人久久久AV老熟妇色| 国内精品伊人久久久久av一坑| 国产精品久久影院| 国产精品美女久久福利网站| 亚洲婷婷国产精品电影人久久| 久久久久亚洲AV无码观看| 久久精品国产亚洲AV大全| 精品国产青草久久久久福利| 久久精品人人做人人爽电影| 亚洲午夜精品久久久久久人妖| 午夜视频久久久久一区 | 久久久www免费人成精品| 一本久久a久久精品综合夜夜| 91精品国产综合久久精品| 亚洲国产成人久久笫一页| 99热成人精品免费久久| 日本精品久久久久中文字幕8|