发布网友 发布时间:2022-04-22 08:47
共4个回答
热心网友 时间:2022-04-18 05:28
1、首先,定义两个字符串变量str1和str2。
2、接着,输入两个字符串,保存在变量str1和str2中。
3、然后,在字符串str1后添加字符串str2,用函数append实现。
4、最后,输出字符串str1。
5、函数append中,可以使用字符串变量,也可以直接使用字符串。
6、字符串后,还可以用append函数,添加多个字符串。
热心网友 时间:2022-04-18 06:46
1、首先,定义两个字符串变量str1和str2。
2、接着,输入两个字符串,保存在变量str1和str2中。
3、然后,在字符串str1后添加字符串str2,用函数append实现。
4、最后,输出字符串str1。
5、函数append中,可以使用字符串变量,也可以直接使用字符串。
6、运行程序,在字符串后,添加了6个固定字符感叹号。
热心网友 时间:2022-04-18 08:20
打开文件时加上ios::app追加方式打开。即把写入的数据追加到文件尾追答你没看我的回答 是ios::app 不是iostream::append
#include
#include
#include
using namespace std;
int main()
{
ofstream ofresult( "result.txt ",ios::app);
cout<<"这个在写文件"<<endl;
ofresult<<"123"<<"你是好孩子"<<endl;
cout<<"第二次写文件"<<endl;
ofresult<<"第二次写文件"<<endl;
return 0;}
热心网友 时间:2022-04-18 10:12
#include <iostream>