using System;
using System.Collections.Generic;
using System.Text;
namespace projAboveAvg
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("全班八个鸡头姓名及带妞分数");
string[] name=new string[]{"景珍","林惠洋","成蓉","洪南昌","龙玉民","单江开","田武山","王三明"};
foreach(string x in name)
{
Console.Write(x+" ");
}
Console.WriteLine();
int[] sum=new int[]{90,65,88,70,46,81,100,68};
foreach(int k in sum)
{
Console.Write(k+" ");
}
Console.WriteLine();
Console.WriteLine("全班八个鸡头带妞总分为");
int nsm=0;
int[] gtr=new int[]{90,65,88,70,46,81,100,68};
for(int i=0;i<gtr.Length;i++)
{
nsm+=sum[i];
}
{
int dnf=0;
dnf+=nsm;
Console.WriteLine(dnf+"分");
Console.WriteLine("带妞平均分为");
dnf/=8;
Console.WriteLine(dnf+"分");
}
Console.WriteLine("鸡头带妞分大于平均分的有");
int []mus=new int[]{90,65,88,70,46,81,100,68};
for(int j=0;j<mus.Length;j++)
{
if(sum[j]>76)
{
Console.Write(" "+sum[j]+" ");
}
}
Console.WriteLine();
Console.WriteLine("鸡头姓名:经期 成聋 穿山甲 犁田闪");
string[] pjfs=new string[]{"平均分是76,","高于平均分的有:"};
foreach(string x in pjfs)
{
Console.Write(x);
}
Console.WriteLine();
Console.Write("景珍 成蓉 单江开 田武山 请按任意键");
}
}
}
//
全班八个鸡头姓名及带妞分数 景珍 林惠洋 成蓉 洪南昌 龙玉民 单江开 田武山 王三明 90 65 88 70 46 81 100 68 全班八个鸡头带妞总分为 608分 带妞平均分为 76分 鸡头带妞分大于平均分的有 90 88 81 100 鸡头姓名:经期 成聋 穿山甲 犁田闪 平均分是76,高于平均分的有: 景珍 成蓉 单江开 田武山 请按任意键
兄弟你写这么多 66666
强强强