摘要: // Type your C++ code and click the "Run Code" button!// Your code output will be shown on the left.// Click on the "Show input" button to enter input data to be read (from stdin).#include #include#includeusing namespace std;void swap( int &a, int &b){ int tmp; tmp=a; a=b 阅读全文
posted @ 2013-07-18 17:19 NinaGood 阅读(172) 评论(0) 推荐(0) 编辑