-
cout的语法是 cout << 输出的值 cin的语法是 cin >> 输入的值查看全部
-
布尔类型是C++中新增的类型,其只有两个值true和false查看全部
-
以下哪种类型是C++比C语言新增的数据类型查看全部
-
cont查看全部
-
10进制,十六进制,8进制输出查看全部
-
c输入输出方式查看全部
-
c++新类型查看全部
-
c数据类型查看全部
-
C++中新增的类型查看全部
-
C语言中的数据类型查看全部
-
IDE及插件~~要安装查看全部
-
#include<iostream> #include<stdlib.h> using namespace std; namespace A { int x = 1; void fun() { cout << "A" << endl; } } namespace B { int x = 2; void fun() { cout << "B" << endl; } void fun2() { cout << "2B" << endl; } } using namespace B; int main(void) { cout << A::x<<endl; fun2(); cout << "hello" << endl; system("pause"); return 0; }查看全部
-
#include<iostream> #include<stdlib.h> using namespace std; int main() { cout << "请输入一个整数" << endl; int x = 0; cin >> x; cout << oct << x << endl; cout << dec << x << endl; cout << hex << x << endl; cout << "请输入一个布尔值(0、1):"<<endl; bool y = false; cin >> y; cout << boolalpha << y << endl; system("pause"); return 0; }查看全部
-
进制输出查看全部
-
c++初始化:复制初始化 int x=1024 直接初始化 int x(1024)查看全部
举报
0/150
提交
取消