返回列表 發帖

C# 7 207 判斷ASCII碼

TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 14:42:17

1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS02資料夾中的CSD02.cs進行編寫。依下列題意進行作答:判斷及輸出字串的ASCII碼,使輸出值符合題意要求。檔案名稱請另存新檔為CSA02.cs,儲存於C:\ANS.CSF\CS02資料夾,再進行評分。

2. 設計說明:
請撰寫程式,讓使用者輸入一個字串(不含文字),再分別輸出各個元素的ASCII碼,顯示如【ASCII code for 'Y' is 89】。

3. 輸入輸出:
輸入說明
一個字串

輸出說明
各元素的ASCII碼(不含文字)

範例輸入1
Ye20@#
範例輸出1
ASCII code for 'Y' is 89
ASCII code for 'e' is 101
ASCII code for '2' is 50
ASCII code for '0' is 48
ASCII code for '@' is 64
ASCII code for '#' is 35

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.                 string str = Console.ReadLine();
  15.                 for(int i = 0; i <= str.Length - 1; i++)
  16.                 {
  17.                     Char x = Convert.ToChar(str.Substring(i, 1));
  18.                     Console.WriteLine("ASCII code for '" + x + "' is " + Convert.ToByte(x).ToString());
  19.                 }
  20.             }
  21.             catch
  22.             {
  23.                 Console.Write("error");
  24.             }
  25.             Console.ReadKey();
  26.         }

  27.     }
  28. }
複製代碼
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.             string str = Console.ReadLine();
  17.             for (int i = 0; i < str.Length; i++)
  18.             {
  19.                 Char x = Convert.ToChar(str.Substring(i, 1));//每抓一個轉字元
  20.                 Console.WriteLine("ASCII code for '" + x + "' is " + Convert.ToByte(x).ToString());//將指定之數字的字串表示,轉換為相等的 8 位元不帶正負號的整數。
  21.             }
  22.         }
  23.         catch
  24.         {
  25.             Console.WriteLine("error");
  26.         }
  27.     }
  28. }
複製代碼
istak.teach2@gmail.com

TOP

返回列表