c++编写Swap函数,利用下列主函数,实现两个数值相互交换的功能。

7题目:编写Swap函数,利用下列主函数,实现两个数值相互交换的功能。--------------------------------------------------... 7 题目:编写Swap函数,利用下列主函数,实现两个数值相互交换的功能。

--------------------------------------------------
注意:部分源程序给出如下。请勿改动主函数main和其它
函数中的任何内容,仅在函数的花括号中填入所编
写的若干语句。
------------------------------------------------*/

#include<iostream>
#include <fstream>
using namespace std;

void writeinfile(int n);

void Swap(int *x, int *y) {
int temp;
/**********Program**********/

/********** End **********/
}

int main() {
int a=1, b=9;
Swap(&a, &b);
cout << "输出两个数:" << a << "," << b << endl;
writeinfile(a);
return 0;
}

void writeinfile(int n)
{
fstream myfile;
myfile.open("f.txt",ios::out);
myfile<<n<<endl;
myfile.close();
}
展开
 我来答
Metaphor90
推荐于2016-03-24 · TA获得超过202个赞
知道小有建树答主
回答量:146
采纳率:0%
帮助的人:132万
展开全部
#include<iostream>
#include <fstream>
using namespace std;
 
void writeinfile(int n);
 
void Swap(int *x, int *y) {
       int temp;
/**********Program**********/
    temp = *y;
    *y = *x;
    *x = temp;
/********** End  **********/
}
 
int main() {
       int a=1, b=9;
       Swap(&a, &b);
       cout << "输出两个数:" << a << "," << b << endl;
       writeinfile(a);
       return 0;
}
 
void writeinfile(int n)
{
       fstream myfile;
       myfile.open("f.txt",ios::out);
       myfile<<n<<endl;
       myfile.close();
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式