最赞回答 / 肆月初肆
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { Console.WriteLine(true|| false);//输出True Console.WriteLine(true && false);/...
2017-12-14
最赞回答 / 异凉聪
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { string[,] ov ={{"h","e","l","l","o"," "},{"eve","r","y","o","n","e"}}; for(int a=0;...
2017-12-11
最新回答 / 火日立子
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