標題:
C# 7 308 陣列搜尋
[打印本頁]
作者:
may
時間:
2024-1-8 22:19
標題:
C# 7 308 陣列搜尋
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 14:53:18
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS03資料夾中的CSD03.cs進行編寫。依下列題意進行作答:在陣列中尋找資料,並輸出找到的索引值,使輸出值符合題意要求。檔案名稱請另存新檔為CSA03.cs,儲存於C:\ANS.CSF\CS03資料夾,再進行評分。
2. 設計說明:
請撰寫程式,讓使用者輸入一個學生成績,輸出此成績在scores清單{ 100, 100, 95, 95, 92, 91, 90, 100, 88, 88, 87, 87, 90, 91, 85, 80, 81, 82, 82, 89 }出現的次數,若輸入文字,請輸出【error】。
3. 輸入輸出:
輸入說明
學生分數
輸出說明
在清單中出現的次數(輸出最後一行後不自動換行)
範例輸入1
95
範例輸出1
2
範例輸入2
60
範例輸出2
0
4. 評分項目:
(1) 符合設計說明輸出正確格式配分 20
作者:
may
時間:
2024-1-9 09:27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSA03
{
class CSA03
{
static List<int> scores = new List<int> { 100, 100, 95, 95, 92, 91, 90, 100, 88, 88, 87, 87, 90, 91, 85, 80, 81, 82, 82, 89 };
static void Main(string[] args)
{
try
{
int score = Convert.ToInt32(Console.ReadLine());
List<int> finds = scores.FindAll(delegate (int s) {
return s.Equals(score);
});
Console.Write(finds.Count.ToString());
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
}
複製代碼
作者:
李泳霖
時間:
2024-2-1 22:51
using ConsoleApp1;
using System;//程式庫呼叫
using System.ComponentModel.DataAnnotations;
using System.Linq.Expressions;
using ABC.qq;
class Program//負責一部分工作的人
{
static List<int> scores = new List<int> { 100, 100, 95, 95, 92, 91, 90, 100, 88, 88, 87, 87, 90, 91, 85, 80, 81, 82, 82, 89 };
static void Main()
{
try
{
int socre=Convert.ToInt32(Console.ReadLine());
//查找列表中與score相同的成績必製作一張列表出來
List<int> finds = scores.FindAll(delegate (int s)
{
return s.Equals(socre);
});
Console.WriteLine(finds.Count.ToString());
}catch
{
Console.WriteLine("error");
}
Console.ReadKey();
}
}
複製代碼
作者:
李泳霖
時間:
2024-6-28 17:34
using ConsoleApp1;
using System;//程式庫呼叫
using System.ComponentModel.DataAnnotations;
using System.Linq.Expressions;
using ABC.qq;
using System.Globalization;
namespace A
{
class Program//負責一部分工作的人
{
static List<int> scores = new List<int> { 100, 100, 95, 95, 92, 91, 90, 100, 88, 88, 87, 87, 90, 91, 85, 80, 81, 82, 82, 89 };
static void Main()
{
try
{
int score = Convert.ToInt32(Console.ReadLine());
int count = 0;
foreach (int i in scores)
{
if (i == score)
count++;
}
Console.WriteLine(count);
}
catch
{
Console.WriteLine("error");
}
Console.ReadKey();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2