最新回答 / 火日立子
Console.Write("这样写输出的语句结尾不换行");Console.WriteLine("这样写输出的语句结尾换行");Console.Write("这样写输出的语句结尾不换行");
2017-12-09
最新回答 / 杨昊杰
Form2 frm = new Form2();//实例化窗体 并定义 frm.Show(); //让新窗体显现出来 this.Hide(); //让你的窗体1隐藏你可以根据这个来写。你的program.cs 中 Application.Run(new Form1()); //默认启动...
2017-12-06
最新回答 / 幕布斯5788019
string[,] info = new string[8, 2] { { "景珍", "90" }, { "林惠洋", "65" }, { "成蓉", "88" }, { "洪南昌", "70" }, { "龙玉民", "46" }, { "单江开", "81" }, { "田武山", "100" }, { "王三明", "68" } }; int sum=0,avg=0; for(int i=0;i<8;i++) { ...
2017-12-03
最新回答 / 慕粉4364288
static void Main(string[] args) { for (int y = 1; y <= 7; y++) { for (int x = 1; x <= y; x++) { Console.Write(x); } Console.WriteLine(); ...
2017-12-03
最赞回答 / Drew2015
咳咳 我说几句啊 要求是:语数外成绩都在90以上 那么 for (int x = 0; x < person; x++) { int temp = 0; bool b = false; while (temp < lesson.Length) { b = score1[x, temp] >...
2017-12-02
最新回答 / 慕粉4364288
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { for(int i=1;i<=7;i++) { for(int j=1;j<=7;j++) {...
2017-11-26
最新回答 / 追着菜大大
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { for(int i = 1;i<=7;i++) { for(int j = 1;j<=7;j++){ ...
2017-11-22
最新回答 / 困就睡觉吧
没看懂你发出来的问题,而且你这代码大括号加错了。正确的如下: int x = 5; int y = 6; if (x >= y) { if (x >= 5) Console.WriteLine("5"); } else { if (y...
2017-11-17
最新回答 / qq_成败萧何_0
字符数组的默认值为 空字符串,而不是null或'a',http://blog.csdn.net/lj_2_0_2/article/details/48979333
2017-11-14