2014年1月23日 星期四

程式碼嵌入測試

#include<iostream>
using namespace std;

int main(int argc, char** argv)
{
    int c;
    cin>>c;
    cout<<"Hello World! "<<c<<endl;
    return 0;
}