最新回答 / 不會趴桌子
using System;using System.Collections.Generic;using System.Text;namespace Test{??? class Program??? {? ? ? ? ?static void Main(string[] args)??????? {??????????? int x = 5;??????????? int y = 5;??????????? int z = 5;??????????? x++;??????????? Console.Wri...
2016-11-14
最新回答 / 一筐
?static void Main(string[] args)? ? ? ? {? ? ? ? ? ?//分號記得改為逗號? ? ? ? ? ? string[] name = new string[] { "吳松", "錢東宇", "伏晨", "陳陸", "周蕊", "林日鵬", "何昆","關欣"};? ? ? ? ?//數組!??!記得加[ ]方括號?。?!? ? ? ? ? ? ?int []num = new int[]{89,90,98,56,60,91,93,85};? ? ? ? ? ? ?...
2016-11-06