首先,輸入您想要因子的數字-
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(); } } }#
以上是C#程式顯示輸入數字的因數的詳細內容。更多資訊請關注PHP中文網其他相關文章!