摘要:
产生一定范围随机数的通用表示公式要取得[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... 阅读全文