已采納回答 / qq_Azazel_dCMSTX
string[] job =new string[]{"經(jīng)理","項目主管","技術總監(jiān)","財務主管"};new string后面少了個”[]“
2020-08-29
最新回答 / qq_慕絲4581239
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? //聲明整型數(shù)組,保存一組整數(shù)? ? ? ? ? ? int[] num = new int[] { 3,34,43,2,11,19,30,55,20};? ? ? ? ? ? forea...
2020-08-13
最新回答 / STMF
4、int類型無法接收string類型,就是你的sum5、檢查代碼中是否有中文標點符號6、int avg = sum/8最好改成 sum/couple.Length
2020-08-07
最新回答 / qq_慕先生330273
? ? ? ? ? ? string[,]? sor=new string[,]? ? ? ? ? ? {{"吳松","89"},{"錢東宇","90"},{"伏晨","98"},{"陳陸","56"},{"周蕊","60"},{"林日鵬","91"},{"何昆","93"},{"關欣","85"}? ? ? ? ? ? };? ? ? ? ? ? //Console.WriteLine(sor.GetLength(0));? ? ? ? ? ? int Q = 0;? ? ? ? ? ? for (in...
2020-07-30