#include<iostream.h>
//---------------------------------------------------------------------------
//First Edition
//without MS(money system)
bool jud(int a);
main()
{
int cho;
cout<<"which kind of weapon you are going to buy?"<<endl
<<"1. Pistols"<<endl
<<"2. Rifels"<<endl
<<"3. AWP"<<endl
<<"4. exit"<<endl<<endl;
do
{
cin>>cho;
switch(cho)
{
case 1 : cout<<endl<<"1.USP"<<endl
<<"2.D-eagle"<<endl;break;
case 2 : cout<<"1.M4A1"<<endl
<<"2.AK47"<<endl;break;
case 3 : cout<<"1.AWP"<<endl;break;
case 4 : cout<<"Have fun next time !"<<endl;break;
default: cout<<"Wrong number,please rechoose"<<endl;
}
}
while(jud(cho));
cin>>"";
}
bool jud(int a)
{
for(int i=1;i<5;i++)
{
if (a==i)
return false;
}
return true;
}
此博客展示了一段C++代码,实现了一个武器购买选择程序。程序提供手枪、步枪、AWP等武器选项,用户输入选择后会显示对应武器,输入错误会提示重新选择,输入4则退出程序,还包含一个判断输入是否有效的函数。
768

被折叠的 条评论
为什么被折叠?



