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

C#开发轻松入门

难度入门
时长 4小时43分
学习人数
综合评分9.40
830人评价 查看评价
9.5 内容实用
9.5 简洁易懂
9.2 逻辑清晰
貌似不对,char数组的默认初始化值不应该是空字符吗
int firstx=1;
int firsty=7;
for(int x=1;x<=7;x++){
firstx=x;
for(int y=7;y>=1;y--){
if(y==firstx || y==firsty){
Console.Write("o");
}else{
Console.Write(".");
}
}
--firsty;
Console.WriteLine();
}
感觉题好多呀
for(int y=1;y<=7;y++)
{
for(int x=1;x<=7;x++)
{
if(x==y||x==8-y)
{Console.Write("O");}
else
{Console.Write(".");
}
Console.WriteLine();
慕课完善很好
emmm,就在最后输出那里,注意不要换行,而且还要加上一个逗号才能得分。这就很体现了,程序的僵硬。
考数学的吧。。。
int max = 0;
string maxName = "";
for(int x = 0; x < score.Length;x++)
{
if(score[x] > max)
{
max = score[x];
maxName = name[x];
}

}
int []score = new int[]{89,90,98,56,60,91,93,85};
string[] name = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
namespace Test
{
class Program
{
static void Main(string[] args)
{
const string CITY = "布宜诺斯艾利斯";//常量,城市
const string NAME = "列奥波尔多·福图纳托·加尔铁里·卡斯特利";//常量,姓名
Console.WriteLine(CITY+"出生在"+ NAME+"的一个工人家庭");//使用常量
}
}
}
string tname = name [i];
tscore = score [i];
if (tscore > avg) {
gname = tname;
Console.Write( gname+" ");
}
我好像写难了,,,,,,,,,
int tscore;
tscore = score [i];
sum += tscore;
}
avg = sum / score.Length;
Console.WriteLine("平均分是{0},高于平均分的有:",avg);
for(int i=0;i<score.Length;i++){
string gname = "";
int tscore;
string[] name={"景珍","林惠洋","成蓉","洪南昌","龙玉民","单江开","田武山","王三明"};
int [] score={90,65,88,70,46,81,100,68};

int sum =0,avg;
for(int i=0;i<name.Length;i++){
//记录名字和分数
string tname = name [i];
世故的小明
课程须知
本课程是C#基础课程,热烈欢迎各位小伙伴拍砖吐槽!!
老师告诉你能学到什么?
1、C#的基本概念 2、Visual Studio的使用技巧 3、C#的语法和程序逻辑

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消