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

九九乘法表

时间:2018-04-06 13:54:18      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:i++   class   pos   ons   int   line   read   div   OLE   

for(int i = 1; i<=9; i++)
{
for (int j = 1; j<= i; j++)
{
Console.Write(i + "*" + j + "=" + i * j + "\t");
}
Console.WriteLine();
}
Console.ReadLine();

九九乘法表

标签:i++   class   pos   ons   int   line   read   div   OLE   

原文地址:https://www.cnblogs.com/WangHaiFen9/p/8727404.html

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