
I have added the numbers using an array −
int[] num = new int[] {1, 25, 1, 55, 1};Now loop through and find for 1, if 1 is there, 6 then increment the variable that counts the occurrence −
网站程序说明: 1.本程序是基于asp 上的. 2.本程序功能齐全,后台添加简单易懂,只要看着文字就可以操作网站的功能! 3.本程序兼容多个浏览器。 4.本程序模板可以导入,导出,便于快速更新模板。 5.本程序支持access和sql两种数据库。 6:本程序有 系统管理,新闻专区,楼盘展示, 房产信息,黄页信息,其它业务 ,广告管理,其他管理 等多个功能!完全符合网站上的需求!
3
foreach(int j in num) {
if (j == 1) {
cal++;
}
}The following is the code to count the number of 1’s in the entered number.
Live Demo
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's: ");
Console.WriteLine(cal);
Console.ReadLine();
}
}Numbers: 1 25 1 55 1 Number of 1's: 3
以上就是C#程序:计算输入数字中1的个数的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号