首页 >后端开发 >C#.Net教程 >C#程序:计算输入数字中1的个数

C#程序:计算输入数字中1的个数

王林
王林转载
2023-08-23 18:41:031415浏览

C#程序:计算输入数字中1的个数

我已经使用数组添加了数字 −

int[] num = new int[] {1, 25, 1, 55, 1};

现在循环查找 1,如果有 1,则增加 6 来计算出现次数的变量 −

foreach(int j in num) {
   if (j == 1) {
      cal++;
   }
}

示例

以下是计算输入数字中 1 的数量的代码。

现场演示

using System;
public class Demo {
   public static void Main() {
      int cal = 0;
      int[] num = new int[] {1, 25, 1, 55, 1};
      Console.WriteLine("Numbers:");
      for (int i = 0; i < 5; i++) {
         Console.WriteLine(num[i]);
      }
      foreach (int j in num) {
         if (j == 1) {
            cal++;
         }
      }
      Console.WriteLine("Number of 1&#39;s: ");
      Console.WriteLine(cal);
      Console.ReadLine();
   }
}

输出

Numbers:
1
25
1
55
1
Number of 1&#39;s:  
3

以上是C#程序:计算输入数字中1的个数的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除