用C#编写控制台程序,利用循环输出9*9算法

如题所述

第1个回答  2014-12-07
using System;

namespace _9x9
{
    class Program
    {
        static void Main(string[] args)
        {
            int c = 0;
            for (int i = 1; i < 10; i++)
            {
                for (int j = 1; j <= i; j++)
                {
                    c = i * j;
                    Console.Write("{0}*{1}={2}  ", i, j, c);
                }
                Console.WriteLine();
            }
            Console.ReadKey();
        }
    }
}

本回答被提问者和网友采纳
第2个回答  2018-06-20
class Program
{
static void Main(string[] args)

{
for(int i=1;i<10;i++){
String str = "";
for (int j=1;j<=i;j++) {
String tem = i + "*" + j + " = " + (i * j) + " ";
str = str + tem;
}
Console.WriteLine(str);
}
Console.ReadKey();
}
}
相似回答