摘要:
#include <iostream> using namespace std; //定义一个圆类 求得圆的周长 //求圆周长的公式为 2*PI*半径 const double PI = 3.14; class Circle { //访问权限 //公共访问权限 public: //属性 int m_ 阅读全文
摘要:
int main 引用 引用做函数的参数//交换函数//1、值传递void mySwap01(int a ,int b){ int temp = a; a = b; b = temp; cout <<"Swap01 a="<<a<<endl; cout <<" Swap01 b="<<b<<endl 阅读全文