最赞回答 / 世纪恒星
记住自己能行,你是最棒的!世界因你会编程而骄傲,你勇于面对代码,并且。。。。以上纯属胡说。其实只要不断地去尝试每个问题,把它实现,从中发现问题并进行总结。该记的知识点还是得记牢靠!祝愿你能有所收获!
2016-11-18
最新回答 / 一筐
static void Main(string[] args) { string[] name = new string[] { "景珍", "林惠洋", "成蓉", "洪南昌", "龙玉民", "单江开", "田武山", "王三明" }; int[] score = new int[] { 90, 65, 88, 70, 46, 81, 100, 68 }; int idax = 0; for (in...
2016-11-18
最新回答 / 慕移动9181930
重点不是有几个人反对会支持,而是想让你学习到如何通过逻辑运算符进行运算,像是and就是一票否决权,全真才真,or则是一个真则真。。亲~答案是没有问题的哦~您可能对if...elseif...else的逻辑运算没有看清楚哦~可以仔细阅读一下我们知识内容部分的讲解哦~
2016-11-17
最新回答 / 不会趴桌子
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