为了账号安全,请及时绑定邮箱和手机立即绑定

C#开发轻松入门

难度入门
时长 4小时43分
学习人数
综合评分9.40
830人评价 查看评价
9.5 内容实用
9.5 简洁易懂
9.2 逻辑清晰
public class Student
{
public Student(string name, int score)
{
Name = name;
Score = score;
}
public string Name { get; set; }
public int Score { get; set; }
}
}
Console.Write("分数最高的是");
foreach(var student in hightestScoreStudents)
{
Console.WriteLine("{0},分数是{1}", student.Name, student.Score);
}
}
}
public static void TheHightestScoreStudent(List<Student> students)
{
var hightestScoreStudents = from student in students
where student.Score ==students.Max(x => x.Score)
select student;
new Student("陈陆",56),
new Student("周蕊",60),
new Student("林日鹏",91),
new Student("何昆",93),
new Student("关欣",85)
};
TheHightestScoreStudent(students);
}
namespace projGetMaxScore
{
class Program
{
static void Main(string[] args)
{
List<Student> students = new List<Student>{
new Student("吴松",89),
new Student("钱冬宇",90),
new Student("伏晨",98),
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;

最新回答 / 六月猫
上边定义的数组类型是string,类型要一致,否则报错

最新回答 / qq_慕的地6528064
这样     for (int i = 1; i < 100; i++)            {                Console.Write(i+"\t");                if (i%5==0)                {                    Console.WriteLine() ;                }            }
这道题有点出得有点坑!不换行还不行了

已采纳回答 / 慕村631995
基本操作没多大变化的,一样用
感叹号必须在中文状态下,哈哈哈

最新回答 / 粗实而夜雨
我复制了你的代码,重新跑了一遍发现的错误就是你的代码中有几个分号写成了中文的格式,你改下试试using System;using System.Collections.Generic;using System.Text;namespace Test{    class Program    {        static void Main(string[] args)        {            string boy = "秀丽";//男孩名字                        ...
for (int x = 1; x &lt;= 7; x++)
{
Console.Write(x);
if(x==y)
break;
感觉和c好像
伏晨后边的标点符号必须是中文的,真的好厉害
只执行一次循环,接下去的使他执行失败false便可以得到一个数字。
课程须知
本课程是C#基础课程,热烈欢迎各位小伙伴拍砖吐槽!!
老师告诉你能学到什么?
1、C#的基本概念 2、Visual Studio的使用技巧 3、C#的语法和程序逻辑

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消