※ 引述 《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();
}
原句是:我反对判死刑但这一定要判死刑
宣判死刑跟执行死刑是两回事