第一章第十题

来源:互联网 发布:php小数转换为整数 编辑:程序博客网 时间:2024/05/22 04:38
#include <iostream>#include <string>using namespace std;int main(){   string s1="hello";   string s2="word";   string s=s1+s2;   cout<<s<<endl;   return 0;}

0 0