먼저 인수분해할 숫자를 입력하세요. -
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!