用 C# 程序显示输入数字的因数
首先,输入需要寻找因数的数字 -
Console.WriteLine("Enter the Number:"); n = int.Parse(Console.ReadLine());
然后,通过以下方式循环查找因数 -
for (i = 1; i <= n; i++) { if (n % i == 0) { Console.WriteLine(i); } }
示例
你可以尝试运行以下代码来显示一个数字的因数 -
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class ApplicationOne { static void Main(string[] args) { int n, i; Console.WriteLine("Enter the Number:"); n = int.Parse(Console.ReadLine()); Console.WriteLine("Factors:"); for (i = 1; i <= n; i++) { if (n % i == 0) { Console.WriteLine(i); } } Console.ReadLine(); } } }
广告