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();
} 展开
--------------------------------------------------
注意:部分源程序给出如下。请勿改动主函数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();
} 展开
1个回答
展开全部
#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();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询