註冊
登錄
論壇
搜索
幫助
導航
私人消息 (0)
公共消息 (0)
系統消息 (0)
好友消息 (0)
帖子消息 (0)
種子論壇 | 高雄市資訊培育協會學員討論區
»
結訓課程 (青少年程式設計班)
»
C++(104-2五)
» 智慧找零系統 (二)
返回列表
發帖
發短消息
加為好友
tonyh
當前離線
UID
94
帖子
7072
精華
21
積分
210
閱讀權限
150
在線時間
2599 小時
註冊時間
2011-1-8
最後登錄
2024-11-21
超級版主
1
#
跳轉到
»
正序看帖
打印
字體大小:
t
T
tonyh
發表於 2015-6-12 19:46
|
只看該作者
智慧找零系統 (二)
本帖最後由 tonyh 於 2016-5-30 12:34 編輯
設計一個更聰明的智慧找零系統, 包括客人付的錢
不足
,
剛好
, 或
任何
可能發生的狀況.
附件:
您需要
登錄
才可以下載或查看附件。沒有帳號?
註冊
收藏
分享
發短消息
加為好友
陳思惟
當前離線
UID
67672
帖子
336
精華
0
積分
15
閱讀權限
10
在線時間
100 小時
註冊時間
2015-1-29
最後登錄
2021-7-28
新手上路
6
#
陳思惟
發表於 2015-6-12 21:20
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"*** 智慧找零系統 ***"<<endl<<endl;
string x,y,pass="0000";
int z,w;
cout<<"輸入使用者名稱: ";
cin>>x;
d:
cout<<"模式選擇";
cout<<"(1) 進入,(2) 離開";
cin>>w;
if(w==1)
{
goto c;
}
else if(w==2)
{
goto end;
}
else
{
cout<<"錯誤";
goto d;
}
c:
cout<<"輸入密碼: ";
cin>>y;
if(y==pass)
{
b:
cout<<"模式選擇";
cout<<"(1) 進入找零系統,(2) 離開";
cin>>z;
if(z==1)
{
goto re;
}
else if(z==2)
{
goto end;
}
else
{
cout<<"錯誤";
goto b;
}
}
else
{
cout<<"錯誤";
goto c;
}
re:
cout<<"使用者: "<<x<<endl;
int price,pay,money1,money2;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"客人付了多少錢: ";
cin>>pay;
money1=pay-price;
money2=price-pay;
if(pay>10000000)
{
cout<<endl<<"錢太多,送我吧!!!"<<"\a\a\a"<<"\a\a\a"<<money2<<"元"<<endl<<endl;
}
if(pay==0)
{
cout<<endl<<"不付錢,讓你電腦當掉!!!"<<endl<<endl;
a:
cout<<"\a\a\a";
goto a;
}
if(pay<price)
{
cout<<endl<<"付的錢不夠,警告你,先不讓你電腦當機,需再付 "<<"\a\a\a"<<money2<<"元"<<endl<<endl;
}
if(money1==0)
{
cout<<endl<<"付的錢剛剛好!!!"<<endl<<endl;
}
if(pay>price)
{
cout<<endl<<"需找客人"<<money1<<"元"<<endl<<endl;
}
if(money1>=500)
{
cout<<"五百元鈔票"<<money1/500<<"張"<<endl;
money1%=500; //money=money%500;
}
if(money1>=100)
{
cout<<"一百元鈔票"<<money1/100<<"張"<<endl;
money1%=100;
}
if(money1>=50)
{
cout<<"五十元硬幣"<<money1/50<<"枚"<<endl;
money1%=50;
}
if(money1>=10)
{
cout<<"十元硬幣"<<money1/10<<"枚"<<endl;
money1%=10;
}
if(money1>=5)
{
cout<<"五元硬幣"<<money1/5<<"枚"<<endl;
money1%=5;
}
if(money1>0)
cout<<"一元硬幣"<<money1<<"枚"<<endl;
goto re;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
曾挺桂
當前離線
UID
67676
帖子
342
精華
0
積分
0
閱讀權限
10
在線時間
53 小時
註冊時間
2015-3-14
最後登錄
2018-2-10
新手上路
5
#
曾挺桂
發表於 2015-6-12 21:16
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int price,pay,money;
cout<<"*** 智慧找零系統 ***"<<endl<<endl;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"客人付了多少錢: ";
cin>>pay;
money=pay-price;
if(money>=10000)
{
cout<<"你錢太多啊!"<<endl;
}
else if(money<0)
{
cout<<"滾去一旁吧!"<<endl;
}
else if(money==0)
{
cout<<"你不錯!讓我省了找錢的時間"<<endl;
}
else
{
cout<<endl<<"需找客人"<<money<<"元"<<endl<<endl;
if(money>=500)
{
cout<<"五百元鈔票"<<money/500<<"張"<<endl;
money%=500; //money=money%500;
}
if(money>=100)
{
cout<<"一百元鈔票"<<money/100<<"張"<<endl;
money%=100;
}
if(money>=50)
{
cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
money%=50;
}
if(money>=10)
{
cout<<"十元硬幣"<<money/10<<"枚"<<endl;
money%=10;
}
if(money>=5)
{
cout<<"五元硬幣"<<money/5<<"枚"<<endl;
money%=5;
}
if(money>0)
cout<<"一元硬幣"<<money<<"枚"<<endl;
}
cout<<endl<<endl;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
陳思惟
當前離線
UID
67672
帖子
336
精華
0
積分
15
閱讀權限
10
在線時間
100 小時
註冊時間
2015-1-29
最後登錄
2021-7-28
新手上路
4
#
陳思惟
發表於 2015-6-12 20:43
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"*** 智慧找零系統 ***"<<endl<<endl;
string x;
int y,z;
cout<<"輸入使用者名稱: ";
cin>>x;
c:
cout<<"輸入密碼: ";
cin>>y;
if(y==0000)
{
b:
cout<<"模式選擇";
cout<<"(1) 進入找零系統,(2) 離開";
cin>>z;
if(z==1)
{
goto re;
}
if else(z==2)
{
goto end;
}
else
{
cout<<"錯誤";
goto b;
}
else
{
cout<<"錯誤";
goto c;
}
re:
int price,pay,money1,money2;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"客人付了多少錢: ";
cin>>pay;
money1=pay-price;
money2=price-pay;
if(pay>10000000)
{
cout<<endl<<"錢太多,送我吧!!!"<<"\a\a\a"<<"\a\a\a"<<money2<<"元"<<endl<<endl;
}
if(pay==0)
{
cout<<endl<<"不付錢,讓你電腦當掉!!!"<<endl<<endl;
a;
cout<<"\a";
goto a;
}
if(pay<price)
{
cout<<endl<<"付的錢不夠,警告你,先不讓你電腦當機,需再付 "<<"\a\a\a"<<money2<<"元"<<endl<<endl;
}
if(money==0)
{
cout<<endl<<"付的錢剛剛好!!!"<<endl<<endl;
}
if(pay>price)
{
cout<<endl<<"需找客人"<<money<<"元"<<endl<<endl;
}
if(money>=500)
{
cout<<"五百元鈔票"<<money/500<<"張"<<endl;
money%=500; //money=money%500;
}
if(money>=100)
{
cout<<"一百元鈔票"<<money/100<<"張"<<endl;
money%=100;
}
if(money>=50)
{
cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
money%=50;
}
if(money>=10)
{
cout<<"十元硬幣"<<money/10<<"枚"<<endl;
money%=10;
}
if(money>=5)
{
cout<<"五元硬幣"<<money/5<<"枚"<<endl;
money%=5;
}
if(money>0)
cout<<"一元硬幣"<<money<<"枚"<<endl;
goto re;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
曾挺桂
當前離線
UID
67676
帖子
342
精華
0
積分
0
閱讀權限
10
在線時間
53 小時
註冊時間
2015-3-14
最後登錄
2018-2-10
新手上路
3
#
曾挺桂
發表於 2015-6-12 20:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int thing,pay,money;
cout<<"*** 智慧找零系統 ***"<<endl<<endl;
cout<<"請輸入商品價格: ";
cin>>thing;
cout<<"客人付了多少錢: ";
cin>>pay;
money=pay-thing;
cout<<endl<<"需找客人"<<money<<"元"<<endl<<endl;
if(money<0)
{
cout<<"錯誤! #$%ˊ79@"<<endl;
}
else if(money=0)
{
cout<<"你不錯嘛,省了我找錢的力氣"<<endl;
}
else if(money>=1000)
{
cout<<"不要以為錢多就能耍智缺!給我滾!"<<endl;
}
else if(money>=500)
{
cout<<"五百元鈔票"<<money/500<<"張"<<endl;
money%=500;
}
else if(money>=100)
{
cout<<"一百元鈔票"<<money/100<<"張"<<endl;
money%=100;
}
else if(money>=50)
{
cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
money%=50;
}
else if(money>=10)
{
cout<<"十元硬幣"<<money/10<<"枚"<<endl;
money%=10;
}
else if(money>=5)
{
cout<<"五元硬幣"<<money/5<<"枚"<<endl;
money%=5;
}
else if(money>0)
{
cout<<"一元硬幣"<<money<<"枚"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
沈子耕
當前離線
UID
67662
帖子
289
精華
0
積分
45
閱讀權限
10
在線時間
47 小時
註冊時間
2015-1-29
最後登錄
2017-8-12
新手上路
2
#
沈子耕
發表於 2015-6-12 20:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int price, pay, money;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"客人付了多少錢: ";
cin>>pay;
if(pay==price){
cout<<"付的錢剛剛好"<<endl<<endl;
}
else if(pay<price && pay>0){
cout<<"付的錢不夠,還差"<<price-pay<<"元"<<endl<<endl;
}
else if(pay==0){
cout<<"不付錢的澳客,滾!"<<endl<<endl;
}
else if(pay>=100*price){
cout<<"錢太多送我"<<endl<<endl;
}
else {
money = pay-price;
cout<<endl<<"需找客人 "<<money<<" 元"<<endl<<endl;
if(money>=500){
cout<<"500元鈔票 "<<money/500<<"張"<<endl;
money%=500;
}
if(money>=100){
cout<<"100元鈔票 "<<money/100<<"張"<<endl;
money%=100;
}
if(money>=50){
cout<<"50元硬幣 "<<money/500<<"枚"<<endl;
money%=50;
}
if(money>=10){
cout<<"10元硬幣 "<<money/10<<"枚"<<endl;
money%=10;
}
if(money>=5){
cout<<"5元硬幣 "<<money/5<<"枚"<<endl;
money%=5;
}
if(money>=1)
cout<<"1元硬幣 "<<money<<"枚"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
ABCDEFGHIJKLMNOPQRSTUVWXYZ
TOP
返回列表
谷哥人營隊
113Scratch夏令營
113年APCS冬令營
113年Scratch冬令營
113年Python證照特訓營(一)
113年谷哥人程式體驗營
113年國三專班
Python研習營(113_114)
113年Python證照特訓營(二)
113年程式夏令營(一)(二)
113年APCS夏令營(一)(二)
Python研習營
113年Python研習冬令營
112年國三專班
112APCS夏令營(一)(二)
112App快速開發夏令營
C語言 / C++ (特別輔導)
C++證照
C#
家教特輔
C語言特輔/證照(家教)
C++證照
C#
HTML5+CSS+JavaScript+PHP+MySQL
Java 家教 (王捷恩)
113新版塊名稱
快樂學 Scratch
Python 家教 (王捷恩 康恒睿)
Python 特別輔導 (家教)
快樂 C++ (家教)
我愛 Java (家教)
程式解題我最行 (家教)
程式常態班
C++ 新生挑戰區
考照心得分享
快樂 C++11307週五19:00
快樂C++11309週六13:30-15:30
快樂 C++11303 (週六15:40-17:40) 3F
程式解題我最行 (週六15:30-17:30) 3F
快樂 C++ (週六13:30-15:30) 3F
快樂 C++ (週六19:00-21:00) 3F
程式解題我最行 (週六10:00-12:00) 3F
快樂學 Scratch
程式解題我最行(週五19:00-21:00)
快樂 C++ (週六13:30-15:30) 3F
程式解題我最行(週三19:15-21:15)
快樂 C++11207週六10
快樂 C++11208週六19:00
程式解題我最行 (週五19:00-21:00) 3F
快樂 C++ (週六15:30-17:30) 3F
程式解題我最行 (週六19:00-21:00) 3F
程式解題我最行 (週四19:10-21:10)
產投職訓
結訓課程 (產投職訓)
Php & MySQL old
Illustrator old
Dreamweaver old
Android手機程式開發班
PHP & MySQL電子商務互動式網站實作班 (102下)
PHP & MySQL (102上)
PHP & MySQL電子商務互動式網站實作班
Photoshop數位影像設計初階
Flash創意廣告動畫初階
行銷短片視訊剪輯
數位商業攝影實務班
PHP & MySQL電子商務系統開發實務初階班
電子商務系統開發實務中階班
Server基礎架設&動態網頁設計初階班
Java視窗應用程式設計與遊戲開發班
Illustrator時尚插畫創作設計初階班
102上Php & MySQL 初階班
電子商務互動式網站實作中階
Dreamweaver多媒體網頁設計
Android手機程式開發班(2012年10月)
PHP & MySQL (2012年10月)
創意塗鴉
yahoo橫幅
google橫幅
市民學苑
第二屆樂活部落格
第一屆電腦設備簡易維護和故障排除班
專案訓練
電子商務創業班
TQC PHP認證
投資理財班
領隊導遊班
電腦基礎及網路應用身心障礙專班
應用軟體網頁化開發
[收藏此主題]
[關注此主題的新回復]
[通過 QQ、MSN 分享給朋友]