#include <iostream> using namespace std; int main() { int a = 1, b = 2; a = b-a; b = b-a; a = b+a; cout << "a:" << a << std::endl; cout << "b:" << b << std::endl; return 0; }
posted on 2013-02-06 16:36 小风儿_xf 阅读(193) 评论(1) 编辑 收藏 举报
Powered by: 博客园 Copyright © 2024 小风儿_xf Powered by .NET 9.0 on Kubernetes