本文解答了关于《高考录取程序》相关内容,同时关于1、高考录取程序和规则,2、高考录取程序有几个步骤,3、高考录取程序讲解视频,4、高考录取程序是怎样的,5、高考录取程序究竟是怎样的,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
高考录取程序(抽签)
#include
#include
using namespace std;
/**
* 录取程序
*/
void lottery()
{
int a[20];
srand((unsigned)time(NULL));
for(int i=0; i<20; i++)
a[i]=rand()%100; //Randomly assign scores,0-99
cout<<"抽签结果:"< int max = a[0];
int sum=0;
int num = 0;
for(int j=0; j<20; j++)
{
cout<<"第"< if(a[j] >= 60)
{
sum+=a[j];
num++;
if(max max = a[j];
}
}
cout<<"录取人数为: "<< num << endl;
cout<<"平均分为: " << sum/num < cout<<"最高分: " << max << endl;
cout<<"---------------------------------"<}
int main(){
cout<<"开始高考抽签:"< lottery();
return 0;
}
总结:以上是编辑:【倾城狠大声】整理及AI智能原创关于《高考录取程序
》优质内容解答希望能帮助到您。