码迷,mamicode.com
首页 > Windows程序 > 详细

C# 打印和for循环的使用

时间:2019-01-12 14:26:27      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:ascii   字符串   字符   system   ber   readline   for   获取   color   

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[] { 1, 2, 3, 4, 5, 6, 7 };  // 定义不定长数组
            //Length表示获取长度
            for(int i = 0; i < numbers.Length; i++)
            {
                // writeLine:表示打印一行;Write:表示不换行打印
                Console.WriteLine(numbers[i]);  // 打印数组的内容
            }
            // ReadLine:读取一行,回车结束,返回字符串类型数据;Read:读取一个字符,回车结束,返回int行数据,貌似是ASCII码值
            Console.ReadKey();  // 等待任意字符
        }
    }
}

 

C# 打印和for循环的使用

标签:ascii   字符串   字符   system   ber   readline   for   获取   color   

原文地址:https://www.cnblogs.com/namejr/p/10259364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!