標題:
C# 7 205 最大公因數
[打印本頁]
作者:
may
時間:
2024-1-8 21:52
標題:
C# 7 205 最大公因數
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 14:40:23
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS02資料夾中的CSD02.cs進行編寫。依下列題意進行作答:輸入兩個數字,判斷並輸出二者的最大公因數,使輸出值符合題意要求。檔案名稱請另存新檔為CSA02.cs,儲存於C:\ANS.CSF\CS02資料夾,再進行評分。
2. 設計說明:
請撰寫程式,讓使用者輸入兩個0至100之間的整數,輸出兩數的最大公因數,若輸入非上述情況的資料,請輸出【error】。
3. 輸入輸出:
輸入說明
兩個0至100之間的整數
輸出說明
最大公因數(輸出最後一行後不自動換行)
範例輸入1
15
48
範例輸出1
3
範例輸入2
30
C#
範例輸出2
error
4. 評分項目:
(1) 符合設計說明輸出正確格式配分 10
作者:
may
時間:
2024-1-8 23:17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSA02
{
class CSA02
{
static void Main(string[] args)
{
try
{
int x1, x2;
x1 = Convert.ToInt32(Console.ReadLine());
x2 = Convert.ToInt32(Console.ReadLine());
if (x1 < 0 || x1 > 100 || x2 < 0 || x2 > 100)
{
throw new ArgumentException();
}
Console.Write(GCD(x1, x2));
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
static int GCD(int x1, int x2)
{
if (x1 == 0)
{
return x2;
}
else if (x2 == 0)
{
return x1;
}
else
{
int reminder = x1 % x2;
return GCD(x2, reminder);
}
}
}
}
複製代碼
作者:
李泳霖
時間:
2024-1-29 21:01
using ConsoleApp1;
using System;//程式庫呼叫
using System.ComponentModel.DataAnnotations;
using System.Linq.Expressions;
using ABC.qq;
class Program//負責一部分工作的人
{
static void Main()//method ..Entry Point 程式進入點
{
try
{
int x1, x2;
x1 = Convert.ToInt32(Console.ReadLine());
x2 = Convert.ToInt32(Console.ReadLine());
if (x1 < 0 || x1 > 100 || x2 < 0 || x2 > 100)
{
throw new ArgumentException();
}
Console.WriteLine(GCD(x1,x2));
}
catch
{
Console.WriteLine("error");
}
}
static int GCD(int x1,int x2)
{
if (x1 % x2 == 0)
return x2;
else
return GCD(x2, x1 % x2);
}
}
/*
* ArgumentException是一個自訂「合法參數」的例外,
* ArgumentException類別所接受的合法參數,是由程式設計師自行設定的。
*
* FormatException當參數格式不符合呼叫的方法的參數規範時引發的異常.
*/
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2