蓝桥算法训练 数据交换 ALGO-221
Posted wz-archer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝桥算法训练 数据交换 ALGO-221相关的知识,希望对你有一定的参考价值。
问题描述
编写一个程序,输入两个整数,分别存放在变量x和y当中,然后使用自己定义的函数swap来交换这两个变量的值。
输入格式:输入只有一行,包括两个整数。
输出格式:输出只有一行,也是两个整数,即交换以后的结果。
要求:主函数负责数据的输入与输出,但不能直接交换这两个变量的值,必须通过调用单独定义的函数swap来完成,而swap函数只负责交换变量的值,不能输出交换后的结果。
样例输入
4 7
样例输出
7 4
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; #define INF 0x7fffffff const double inf=1e20; const int maxn=1000+10; const int mod=1e7; const double pi=acos(-1); int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d %d ",b,a); return 0; }
以上是关于蓝桥算法训练 数据交换 ALGO-221的主要内容,如果未能解决你的问题,请参考以下文章