-
cin的语法形式查看全部
-
cout 的语法形式查看全部
-
c++ 与c 的区别 1. c++中增加了bool类型,true表示真,false表示假 2. c++中可用于初始化的方法 如:int a(0) 这里将 a 初始化为 0 3. c++中的变量可以随用随定义查看全部
-
#include <stdlib.h> #include <iostream> using namespace std; namespace A { int x = 1; void fun() { cout << "A" << endl; } } namespace B { int x = 2; void fun() { cout << "B" << endl; } } int main(void) { cout << A::x << endl; B::fun(); system("pause"); return 0; }查看全部
-
cout << oct <<x<<endl; 输出数八进制 cout << dec <<x<<endl; 输出10进制 cout << hex <<x<<endl; 输出16进制查看全部
-
cin>> cout <<查看全部
-
#include<stblib.h> #include<iostream> using namespace std; namespace A { int x=1; void fun() { cout<<"A"<<endl; } } namespace B { int x=2; void fun(); { cout<<"B"<<endl; } } int main(void); { cout<<"hello"<<endl; system("pause") return 0; }查看全部
-
#include<stblib.h> #include<iostream> using namespace std; int main(void) { cout<<"hello"<<endl; syetem("pause") return 0; }查看全部
-
#include <stblib.h> int main(void) { system("pause"); return 0; }查看全部
-
namespace A { int x=0; void f1(); void f2(); } namespaceB { int x=2; void f1(); void f3(); } cout<<A::x<<endl; B::f1();查看全部
-
bool类型、新初始化int test(1024)、随用随定义查看全部
-
C++新数据类型:bool(true/false)查看全部
-
C语言中的数据类型查看全部
-
C++应用领域查看全部
-
C++ I/O 方式查看全部
举报
0/150
提交
取消