-
关键字都是小写的
查看全部 -
static表示“静态的”。 string表示“字符串”数据类型。 using常常写在类的前面,用来引用其他命名空间中的类
查看全部 -
循环访问一组数据,从中找出符合条件的数据,这样的算法叫做查找
写查找的算法,需要做 2 件事,一是写循环访问每一个数据,二是对每一个数据进行验证。这样,就需要写 2 个“条件”:循环条件和筛选条件。
查看全部 -
查看全部
-
了解了 foreach 循环的语法,你可能会有疑问:好像 foreach 循环能做的 for 都能做, foreach 存在的意义是什么呢?其实,C#中还存在一些类似于数组的数据组织方式,它们中有一些是没有元素索引的,对于这些元素,只能通过 foreach 遍历。
查看全部 -
查看全部
-
查看全部
-
数据类型[ ] 数组名 = new 数据类型[长度];
注意:数组名像变量名一样要遵循标识符的命名规则;长度必须是整数
数组经过初始化以后,数组元素有默认的初始值, double 类型为 0.0 , int 类型为 0 , char 类型为 'a' , bool 类型为 false , string 类型为 null 。
数组.Length 属性会返回数组的长度(即数组元素的个数)
查看全部 -
查看全部
-
查看全部
-
嵌套循环至少包含 2 层循环,外层的循环体执行一次,内层的循环体则执行 n 次,内层体被执行的总次数 = 内层循环次数 * 外层循环次数
查看全部 -
算法-查找
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] score = { 85,76,98,100,62,60};//分数
bool hasNopass = false;//记录是否有不及格的,默认没有
for (int i = 0; i < score.Length; i++)
{
if (score[i] < 60)//如果有不及格的
{
//记录有不及格的
hasNopass = true;
break;
}
}
if (hasNopass)
Console.WriteLine("有人不及格");
else
Console.WriteLine("都及格啦!");
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= y; x++)
{
Console.Write(x);
}
Console.WriteLine();//换行
}
}
}
}
查看全部 -
///是文档注释,只能写在类、方法、属性的前面。不能用来注释单个变量。
查看全部 -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication27
{
class Program
{
static void Main(string[] args)
{
int[] num = new int[] { 30, 97, 99,50, 75, 60, 90, 80 };
string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int max = num[0];
string MaxName =name[0] ;
int index = 0;
for (int i = 1; i < num.Length; i++)
{
if (num[i] > max)
{
max = num[i];
index = i;
MaxName=name[i];
}
}
Console.WriteLine("分数最高的是{0},分数是{1}", MaxName,max);
Console.ReadKey();
}
}
}
查看全部
举报