摘要:
eg:int a[5]={1,2,3,4,5}; a表示数组首地址,也就是a[0]的地址;a+1表示下一元素的地址,即a[1]的地址; &a表示对象(数组)首地址; &a+1表示下一对象的地址,一个对象有和a一样大小的元素,因此&a+1等价于&a+5*sizeof(int),也就... 阅读全文
摘要:
产生一定范围随机数的通用表示公式要取得[a,b)的随机整数,使用(rand() % (b-a))+ a;要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a;要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1;通用公式:a + rand() % n;... 阅读全文
摘要:
double a=3; //一定是double不能是intcout.setf(ios::fixed); cout.precision(2);cout<<a<<endl;输出:3.00 阅读全文
摘要:
#includeusing namespace std;int sum;int store[10];void OutPut(){ for(int i=9;i>=0;i--) { cout(num+1)*10) //num从0到9 return; if(num==0) { stor... 阅读全文