码迷,mamicode.com
首页 > 其他好文 > 详细

九九乘法表

时间:2014-09-01 12:30:53      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   for   2014   

九九乘法表

bubuko.com,布布扣
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace 九九乘法表
 7 {
 8     class Program
 9     {
10         static void Main(string[] args)
11         {
12             int i, j;
13             for (i = 1; i <= 9; i++)
14             {
15                 for (j = 1; j <= i; j++)
16                     Console.Write("{0}×{1}={2,2} ", j, i, i * j);
17                 Console.WriteLine();
18             }
19             Console.Read();
20         }
21     }
22 }
View Code

输出结果:
bubuko.com,布布扣

九九乘法表

标签:style   blog   http   color   os   io   ar   for   2014   

原文地址:http://www.cnblogs.com/zhangyongheng/p/3948985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!