for语句嵌套使用 实现9*9乘法表

     这个实例主要考察对for循环语句的使用,出现递增规律的乘法表。

开发环境

     开发工具:Microsoft Visual Studio2010 旗舰版

具体步骤

     先是制作一个控制台项目,具体项目名称见下图:

for语句嵌套使用 实现9*9乘法表

     然后在Program.cs主函数中编写控制9*9乘法表,需要了解for循环语句的使用方法:

具体代码如下

   1:  using System;
   2:   
   3:  namespace NineToNineUnit
   4:  {
   5:      class Program
   6:      {
   7:          static void Main(string[] args)
   8:          {
   9:              string t = string.Empty;
  10:              for (int i = 1; i < 10; i++)
  11:              {
  12:                  for (int j = 1; j <=i; j++)
  13:                  {
  14:                      t = string.Format("{0}*{1}={2}  ", j, i,(j*i));
  15:                      if (j <= 10&&i<=10)
  16:                         Console.Write(t);
  17:                         
  18:                      if (i == j)
  19:                         Console.Write("\n");
  20:                  }
  21:                  Console.Write("\n");
  22:              }
  23:              Console.ReadKey();
  24:          }
  25:      }
  26:  }

运行效果图如下:

for语句嵌套使用 实现9*9乘法表

技术点

1、控制台语句使用,如Console.Ready()按任意键退出运行框,Console.Write()输出一行信息。

2、Format强制数据类型转换使用。

3、如上第一个for循环主要涉及9*9乘法表每一行信息的循环,第二个for循环主要涉及每一行里面信息的循环。

 

感想

通过for循环嵌套语句的使用,能够有序的显示9*9乘法表。希望通过小实例给大家带来一些启发,将该思想运用到实际项目中。

源码下载

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }

上一篇:转:桩模块 stub 和驱动模块 driver


下一篇:REDIS 字典数据结构