標題:
C# 7 208 計算階乘
[打印本頁]
作者:
may
時間:
2024-1-8 21:55
標題:
C# 7 208 計算階乘
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 14:42:53
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS02資料夾中的CSD02.cs進行編寫。依下列題意進行作答:輸入一個1-9的正整數,再以三角形的方式,依序輸出1到此數階乘計算結果。檔案名稱請另存新檔為CSA02.cs,儲存於C:\ANS.CSF\CS02資料夾,再進行評分。
2. 設計說明:
請在Main方法撰寫程式,輸入一個1-9的正整數,再以三角形的方式,依序輸出1到此數階乘計算結果,輸出的乘積欄位寬度為4個字元,需靠左對齊。
若輸入文字或不在指定範圍的數字,請輸出【error】。
3. 輸入輸出:
輸入說明
一個1~9正整數
輸出說明
以三角形的方式,依序輸出1到此數階乘計算結果
範例輸入1
5
範例輸出1
1*1=01
2*2=04 2*1=02
3*3=09 3*2=06 3*1=03
4*4=16 4*3=12 4*2=08 4*1=04
5*5=25 5*4=20 5*3=15 5*2=10 5*1=05
範例輸入2
10
範例輸出2
error
4. 評分項目:
(1) 符合設計說明輸出正確格式配分 10
作者:
may
時間:
2024-1-8 23:19
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 = 0;
x1 = Convert.ToInt32(Console.ReadLine());
if (x1 > 9) { throw new Exception(); }
//TODO
int k;
for (int i = 1; i <= x1; i++)
{
for (int j = 1; j <= i; j++)
{
k = i - j + 1;
Console.Write("{0}*{1}={2,-4:00}", i, k, i * k);
}
Console.WriteLine();
}
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
}
複製代碼
作者:
李泳霖
時間:
2024-1-29 21:27
using ConsoleApp1;
using System;//程式庫呼叫
using System.ComponentModel.DataAnnotations;
using System.Linq.Expressions;
using ABC.qq;
class Program//負責一部分工作的人
{
const string dreams = "There are moments in life when you miss someone so much that " +
"you just want to pick them from your dreams and hug them for real! Dream what " +
"you want to dream;go where you want to go;be what you want to be,because you have " +
"only one life and one chance to do all the things you want to do";
static void Main()//method ..Entry Point 程式進入點
{
try
{
int x1 = 0;
x1=Convert.ToInt32(Console.ReadLine());
if(x1>9)
{
throw new ArgumentException();
}
int k;
for(int i=1;i<=x1;i++)
{
for(int j=i;j>=1;j--)
{
Console.Write("{0}*{1}={2,-4:00}",i,j,i*j);//寬度為4個字元,需靠左對齊。
}
Console.WriteLine();
}
}
catch
{
Console.WriteLine("error");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2