本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。
代码语言:javascript复制#include<iostream>
#include<stdlib.h>
#include<time.h>
#include<iomanip>
using namespace std;
int main() {
srand((int)time(0));
int a,b,c,d,e,b1,c1,d1;
a=(rand() );
if(a==0) a ;
b1=50-a-3;
b=(rand()�);
if(b==0) b ;
c1=50-a-b-2;
c=(rand()�);
if(c==0) c ;
d1=50-a-b-c-1;
d=(rand()�);
if(d==0) d ;
e=50-a-b-c-d;
cout<<"50只动物随机分为五个组"<<endl;
cout<<"A组"<<" B组"<<" C组"<<" D组"<<" E组"<<endl;
cout<<setw(2)<<a<<" "<<setw(2)<<b<<" "<<setw(2)<<c<<" "<<setw(2)<<d<<" "<<setw(2)<<e<<endl;
system("pause");
return 0;
}
Post Views: 185