for(int a=1;a<=9;a++)
{
      for(int b=1;b<a;b++)
      {
            Console.WriteLine("{0}*{1}={2}",a,b,a*b);
      }
       Console.WriteLine();
}
想的。没调试,2重循环。

相关文章:

  • 2022-12-23
  • 2021-11-18
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-06
  • 2021-11-11
  • 2021-12-06
  • 2021-09-07
  • 2021-08-03
相关资源
相似解决方案