close
#include<iostream>
using namespace std;
int main()
{
char s1='d',s2='D',g;
do{ //"do"為事先敘述迴圈內容
cout<<"請猜A~E其中一個音文字母:"<<endl;
cin>>g;
}while((g!=s1)&&(g!=s2)); //"!"為NOT邏輯運算 "&&"為AND邏輯運算 "||"為OR邏輯運算
//"while(...)"最後敘述判斷式並在結尾加上";"表是結束
cout<<"你猜對囉!"<<endl;
system("PAUSE");
return 0;
}
輸出結果:
請猜A~E其中一個音文字母:
b
請猜A~E其中一個音文字母:
c
請猜A~E其中一個音文字母:
d
你猜對囉!
請按任意鍵繼續 . . .
全站熱搜
留言列表