在VS中用C++将获得的x和y的两个数据输出到txt文件中

C++语言 码拜 10年前 (2015-05-11) 1388次浏览 0个评论

如何在VS中用C++将获得的x和y的两个数据输出到txt文件中?谢谢大家了!

5分
参考http://www.cnblogs.com/uniqueliu/archive/2011/08/03/2126545.html
10分
#include <fstream>

std::fstream fileW(“a.txt”);
fileW<<“x”<<“y”;
fileW.close();

5分
#include <fstream>
int main(void)
{
	ofstream fo("1.txt", ofstream::out);
	if (fo.is_open())
	{
		char c = ""a"";
		int i = 10;
		float f = 11.0f;
		double d = 12.0;
		fo << c << ends << i << ends << f << ends << d;
		fo.close();
	}
	return 0;
}

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明在VS中用C++将获得的x和y的两个数据输出到txt文件中
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!