手记

bool类型的简单应用之进制

//bool类型使用
//要求:提示用户输入一个整数,将该整数分别以8、10、16进制打印到屏幕上
// 8=>oct 10=>dec 16=>hex
//要求:提示用输入一个bool值(0、1),以bool方式讲值打印到屏幕上

include<iostream>
include<stdlib.h>

using namespace std;

int main(void)
{
cout<<"请输入一个整数:"<<endl;
int x;
cin>>x;
cout<<oct<<x<<endl;
cout<<dec<<x<<endl;
cout<<hex<<x<<endl;

cout<<"请输入一个bool值(0、1):"<<endl;
bool y=false;
cin>>y;
cout<<y<<endl;

system("pause");
return 0;

}

3人推荐
随时随地看视频
慕课网APP