#include <iostream>
#include <cstdlib>
using namespace std;
#defineTL_YAN 0x001L // 00001 盐
#define TL_TANG 0x002L // 00010 糖
#define TL_JIANGYOU 0x004L // 00100 酱油
#define TL_CU 0x008L // 01000 醋
#define TL_LAJIAO 0x010L // 10000 辣椒
typedef long LONG;
// 调料
void TiaoLiao(LONG l)
{
if (l&TL_YAN)// 00001 & xxxx1 = 00001
{
cout<<"盐"<<endl;
}
if (l&TL_TANG)// 00010 & xxx0x = 00000
{
cout<<"糖"<<endl;
}
if (l&TL_JIANGYOU)
{
cout<<"酱油"<<endl;
}
if (l&TL_CU)
{
cout<<"醋"<<endl;
}
if (l&TL_LAJIAO)
{
cout<<"辣椒"<<endl;
}
}
void main()
{
cout<<"你需要调料:"<<endl;
TiaoLiao(TL_LAJIAO| TL_TANG);
system("pause");
}
输出的结果是:
你需要的调料:
糖
辣椒