Dev C++
===
# h12021/3/2
## 第一個程式
```cpp=
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
main()
{
int a=3;
int 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");
}
```