注册 登录
编程论坛 版务及公告

顶顶

jishiyu 发布于 2008-03-23 20:40, 3083 次点击
using System;
public class ChengFaBiao
{
    public static void Main()
    {
        Console.WriteLine ("jiu jiu cheng fa biao");
        for(int x=1;x<=9;x++)
        {
            for(int y=1;y<=x;y++)
            {
                Console.Write ("{0}*{1}={2}\t",x,y,x*y);
            }
            Console.WriteLine ();
        }
    }
}
4 回复
#2
gavin1232008-04-17 17:47
啊啊!
#3
黑水2008-09-05 11:20
ding
1