输出Hello word
#define _CRT_SECURE_NO_WARNINGS
#include
int main(){
cout << "Hello word" << endl ;
//不换行
cout << "HELLO WORD " ;
int a;
cin << a;
}
#define _CRT_SECURE_NO_WARNINGS
#include
int main(){
cout << "Hello word" << endl ;
//不换行
cout << "HELLO WORD " ;
int a;
cin << a;
}