• 10. C# for循环


    for循环

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace Ant10
    {
        /// <summary>
        /// fou循环语句
        /// </summary>
        class Program
        {
            static void Main(string[] args)
            {
                //int i = 0 计数器初始化
                //i < length (根据计数器来判断条件 是否成立)
                //i++ (对计数器的操作)
                for (int i = 1; i <= 9; i++)//初始化第一次执行,并且只执行一次,计数器第一次不执行
                {
                    //循环体
                    Console.WriteLine(i);
                }
                Console.Read();
            }
        }
    }
    

    乘法口诀表

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace Ant10
    {
        /// <summary>
        /// fou循环语句
        /// </summary>
        class Program
        {
            static void Main1(string[] args)
            {
                //int i = 0 计数器初始化
                //i < length (根据计数器来判断条件 是否成立)
                //i++ (对计数器的操作)
                for (int i = 1; i <= 9; i++)//初始化第一次执行,并且只执行一次,计数器第一次不执行
                {
                    //循环体
                    Console.WriteLine(i);
                }
                Console.Read();
            }
            static void Main(string[] args)
            {
    
                for (int x = 1; x <= 9; x++)//控制列
                {
                    for (int y = 1; y <= x; y++)//打印行
                    {
                        Console.Write(y + "X" + x + "=" + y*x + "	");
                    }
                    Console.WriteLine();//换行
                }
                Console.Read();
            }
        }
    }
    

    效果
    image.png

  • 相关阅读:
    windows ip路由
    linux ip命令和ifconfig命令
    工作项目技术总结
    网络安全体系
    网络适配器输入的IP地址 已经分配给另一个适配器
    Android笔记之ImageView设置图片以灰色显示
    js小功能
    html2canvas截取图片跨域解决办法
    JS学习笔记(二).eq()与[]的区别
    jQuery中常用的元素查找方法总结
  • 原文地址:https://www.cnblogs.com/gice/p/13025302.html
Copyright © 2020-2023  润新知