用这个吧
2023-10-02 09:35:04
发布于:四川
4阅读
0回复
0点赞
#include<iostream>
#include<cstring>
using namespace std;
void HelloWorld(string aa){
	if(aa=="Hello world"){
		cout<<aa<<endl;
	}else{
		cout<<"Hello world"<<endl; 
	}
}
int main() {
	string aa="Hello world";
	HelloWorld(aa);
    return 0;
}
这里空空如也

有帮助,赞一个