PTT推薦

Re: [問卦] 用if else敘述反對死刑但這個必須死

看板Gossiping標題Re: [問卦] 用if else敘述反對死刑但這個必須死作者
orze04
(orz)
時間推噓 推:0 噓:0 →:3

※ 引述 《applebg (Noble Wolf)》 之銘言:
你要不要補一下字數
: ※ 引述《pchion2002 (阿我就怕被罵阿)》之銘言:
: : 各位大師下午好
: : 昨天兩名警察領了盒飯
: : 造就了有金句產生
: : 從程式語言來看下面這句話
: : 「我反對死刑但這一定要判死」
: : 判斷式要怎麼寫才能成立?
:  
: //judges do not sentence people to death
: bool death_sentence = False;
:  
: //assume that no policemen die
: bool kill_policemen = False;
:  
: //if no policemen die, the judge would say the following
: while(!death_sentence){
: printf("judge: be a good person, you shall be pardoned");
: //if a policeman dies, the judge will stop pardoning people
: //and sentence people to death
: if(kill_policemen == True){
: printf("May God have mercy upon your soul,
: because I won't!");
: death_sentence = True;
: break;
: }
:  
: }
:  
少了最後一段

while(death_sentence && 0){
executePenalty();
}

原句是:我反對判死刑但這一定要判死刑
宣判死刑跟執行死刑是兩回事

--

※ PTT留言評論
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 223.137.131.81 (臺灣)
PTT 網址

kk16355 08/23 17:23本來就是殺人償命executePenalty

kk16355 08/23 17:24說的好

kk16355 08/23 19:23改executeDeathPenalty?