#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
srand(time(0));
int ich;int num;
do
{
getchar();
num=rand()%100+1;
if(num%6==0)
{
printf("帅英杰 窦宇宸 冯承文 杨诗诗 代祥 张蕴星
");
}
else
if(num%6==1)
{
printf("张功 张镜铭 吴昊楠 杨丽敏 姜琬莹 朱伟强 穆治名
");
}
else
if(num%6==2)
{
printf("张志航 黄雪菊 谭万名 彭洁 钱方园 郑志文 王豪华
");
}
else
if(num%6==3)
{
printf("赵震 徐玉明 杨丹 苍月娴 崔亚辉 司浩圻 夏元群
");
}
else
if(num%6==4)
{
printf("胡元港 严真乐 李书斋 何欢 肖月银 黄鹍 杨聪
");
}
else
if(num%6==5)
{
printf("黄帆 钟佳伶 段金龙 汪彬 闫祎程 贾超 朱建国
");
}
}while(num!=ich);//循环成立的条件
//正常情况下,100以内的数据最多7次就能猜出正确的结果
return 0;
}
/*
*/
//注意:在两个数做运算时,只要有一个是浮点数,计算的结果均为浮点数!