题解 | #按照格式输入并交换输出#
按照格式输入并交换输出
https://www.nowcoder.com/practice/95eb723a3e854376a7eb6d116cc7d875
#include <iostream>
#include<cstdio>
using namespace std;
int main() {
int a,b;
scanf("a=%d,b=%d",&a,&b);
a=a^b;
b=a^b;
a=a^b;
cout <<"a="<< a <<","<<"b="<<b << endl;
}
// 64 位输出请用 printf("%lld")