基本上每个应用程序领域的程序员都有使用 C++

C++ 的使用
基本上每个应用程序领域的程序员都有使用 C++。

C++ 通常用于编写设备驱动程序和其他要求实时性的直接操作硬件的软件。

C++ 广泛用于教学和研究。

任何一个使用苹果电脑或 Windows PC 机的用户都在间接地使用 C++,因为这些系统的主要用户接口是使用 C++ 编写的。

 #include <iostream>

 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int i,j;
i='a';
j='b';
cout <<i<<' '<<j<<'\n'; int x,y;
x='A';
y='B';
cout <<x<<' '<<y<<'\n';
return ;
}
上一篇:1015 德才论 (25 分)


下一篇:leetcode 141. Linked List Cycle