2017.10.13

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace fgghghkjhj
{
    class Program
    {
        static void Main(string[] args)
        {
            //string s1 = Console.ReadLine();//输入
            //Console.WriteLine("Hello World!");//输出
            //Console.Read();
            int[] no = new int[4];//声明数组new为数组分配内存
            for (int i = 0; i < no.Length; i++){
                no[i]=Convert.ToInt32(Console.ReadLine()); }//循环
            Convert.ToInt32(string);//转换成32位整数
            //变量.Tostring();
            //int.parse(string);  把字符串转换成其它类型
            ? ://三木运算
           // 定义常量关键字 const
            //ctrl+K+D   代码对齐   代码正确情况下
            //
        }
    }
}

你可能感兴趣的:(2017.10.13)