返回列表 發帖

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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;

  6. namespace CSA02
  7. {
  8.     class CSA02
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             try
  13.             {
  14.                 int x1 = 0;
  15.                 x1 = Convert.ToInt32(Console.ReadLine());
  16.                 if (x1 > 9) { throw new Exception(); }

  17.                 //TODO
  18.                 int k;
  19.                 for (int i = 1; i <= x1; i++)
  20.                 {
  21.                     for (int j = 1; j <= i; j++)
  22.                     {
  23.                         k = i - j + 1;
  24.                         Console.Write("{0}*{1}={2,-4:00}", i, k, i * k);
  25.                     }
  26.                     Console.WriteLine();
  27.                 }
  28.             }
  29.             catch
  30.             {
  31.                 Console.Write("error");
  32.             }
  33.             Console.ReadKey();
  34.         }

  35.     }
  36. }
複製代碼
May

TOP

  1. using ConsoleApp1;
  2. using System;//程式庫呼叫
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq.Expressions;
  5. using ABC.qq;


  6. class Program//負責一部分工作的人
  7. {
  8.     const string dreams = "There are moments in life when you miss someone so much that " +
  9.     "you just want to pick them from your dreams and hug them for real! Dream what " +
  10.     "you want to dream;go where you want to go;be what you want to be,because you have " +
  11.     "only one life and one chance to do all the things you want to do";
  12.     static void Main()//method ..Entry Point 程式進入點
  13.     {
  14.         try
  15.         {
  16.             int x1 = 0;
  17.             x1=Convert.ToInt32(Console.ReadLine());
  18.             if(x1>9)
  19.             {
  20.                 throw new ArgumentException();
  21.             }
  22.             int k;
  23.             for(int i=1;i<=x1;i++)
  24.             {
  25.                 for(int j=i;j>=1;j--)
  26.                 {
  27.                     Console.Write("{0}*{1}={2,-4:00}",i,j,i*j);//寬度為4個字元,需靠左對齊。
  28.                 }
  29.                 Console.WriteLine();
  30.             }
  31.         }
  32.         catch
  33.         {
  34.             Console.WriteLine("error");
  35.         }
  36.     }
  37. }
複製代碼
istak.teach2@gmail.com

TOP

返回列表