C# 打印、输入和for循环的使用

时间:2021-06-05 17:50:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] numbers = new int[] { , , , , , , }; // 定义不定长数组
//Length表示获取长度
for(int i = ; i < numbers.Length; i++)
{
// writeLine:表示打印一行;Write:表示不换行打印
Console.WriteLine(numbers[i]); // 打印数组的内容
}
// ReadLine:读取一行,回车结束,返回字符串类型数据;Read:读取一个字符,回车结束,返回int行数据,貌似是ASCII码值
Console.ReadKey(); // 等待任意字符
}
}
}

打印

Console.Write("namejr");  // 打印不换行字符

Console.WriteLine("namejr");  // 打印换行字符

打印字符上面两种形式还可以像下面这样使用

            // 这里仅仅以Console.Write()为例子
string myname = "namejr";
// 使用{}以占位符方式使用
Console.Write("我的名字是: {0}", myname);
// 使用+ 构成字符串方式使用
Console.Write("我的名字是: " + myname);

输入

Console.Read();  // 读取一个字符,该字符会转为ASCII数值,以int类型返回。如果输入多个,那么会读取。

Console.ReadLine();  // 读取一串字符,以string类型返回

Console.ReadKey();  // 用来获取用户按下一个键,再按下的同时会显示在cmd窗口中。对于我来说,仅仅是用来做等待cmd窗口不会显示瞬间消失的作用,如果还发现其他用途,还望告知。

其他

Console.Beep();  // 唤起系统的一次提示音

Console.Clear();  // 用来清空console输出的信息