首页 > 编程 > C# > 正文

C#习题:打印1-100之间所有的数但不包括能被5整除的数

2023-05-05 19:01:31
字体:
来源:转载
供稿:网友

C#习题:编程打印出1-100之间所有的数,但不包括能被5整除的数,要求每输出10个数一换行。

编程思想:这道题比较简单,可以使用循环和continue语句来实现。

源程序参考如下:

using System; 

class Class1

{

    static void Main()

    {

       int count = 0;

       for(int i=1;i<=100;i++)

       {

           if(i%5==0)

              continue;

           count ++;

           Console.Write("{0,4}",i);

           if(count%10==0)      //10个一行

              Console.WriteLine();          

       }

    }

}

运行结果:

源程序

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表