Guest
Login
跳过导航链接

注释
Time Limit:1000MS  Memory Limit:32768K

Description:

给出一个C++源程序代码。请将其中的注释去掉。

Sample Input:

//======================

// simplest program

//======================
#include<iostream>
using namespace std;
//----------------------
int main(){
cout<<”hello world!\n”;
}//---------------------

 

Sample Output:

#include<iostream>
using namespace std;
int main(){
cout<<”hello world!\n”;
}
Status  Submit


Zhe Jiang University Of Technology Online Programming Space Beta1.3
Designed & Developped By Jin Qiwei
Refactored By cb@zjut.edu.cn , QQ Group: 723311416  All Copyright Reserved 2006-
594