首页 > 其他 > 详细

第十一章:for循环语句加强版

时间:2020-06-05 19:03:36      阅读:45      评论:0      收藏:0      [点我收藏+]

代码:

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

namespace for循环语句2
{
    class Program
    {
        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();
        }
    }
}

运行结果:
技术分享图片

 

第十一章:for循环语句加强版

原文:https://www.cnblogs.com/wangqiangya/p/13051262.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!