# DEV C++
===
# 第一個程式:
```cpp=
## #include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main()
{
int a=3;
float b=3.789;
char c=0x41;
bool d=true;
bool e=false;
cout << "a =" << a << endl;
cout << "b =" << b << endl;
cout << "c =" << c << endl;
cout << "d =" << d << endl;
cout << "e =" << e << endl;
system("pause");
}