最新回答 / 幕布斯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