Translate

2010年12月18日土曜日

hello,world的めも


#include
using namespace std;
int main(){
cout << "Hello, world!" << endl;
}

で、test.cppで保存

あとは、お好きなコンパイラでコンパイル。
ただし、gccなら -lstdc++をつける。
gcc -o test test.cpp -lstdc++
./test で実行

というめも。

0 件のコメント: