Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Giải bài tập C#

00:08 31-05-2023 368 lượt xem 7 bình luận

Bài toán Cshap C#

kiểm tra cuối kỳ...

1. Nhập 1 mảng từ bàn phím, kích thước nhập từ bàn phím.

a, lấy ra các giá trị trùng nhau và số lần trùng. Sau đó in ra màn hình.

b, sắp xếp lại những giá trị đó theo thứ tự tăng dần theo số lần xuất hiện. xuất ra màn hình dựa từ câu a.

c, lưu vào thư mục có đuôi .txt

Nhờ anh em htro với ạ...

Áp dụng hàm for ,if

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
Fury Moderator đã bình luận 12:48 08-06-2023

nếu bạn đã nộp bài rồi thì mình share code bài này để bạn tham khảo thêm 

using System;
using System.Collections.Generic;
using System.IO;

class Program
{
    static void Main()
    {
        Console.Write("Nhập kích thước mảng: ");
        int size = int.Parse(Console.ReadLine());

        int[] arr = new int[size];

        Console.WriteLine("Nhập các phần tử của mảng:");
        for (int i = 0; i < size; i++)
        {
            Console.Write($"Phần tử {i+1}: ");
            arr[i] = int.Parse(Console.ReadLine());
        }

        // a) Lấy ra các giá trị trùng nhau và số lần trùng
        Dictionary<int, int> frequency = new Dictionary<int, int>();
        for (int i = 0; i < size; i++)
        {
            if (frequency.ContainsKey(arr[i]))
                frequency[arr[i]]++;
            else
                frequency[arr[i]] = 1;
        }

        Console.WriteLine("Các giá trị trùng nhau và số lần trùng:");
        foreach (var item in frequency)
        {
            Console.WriteLine($"{item.Key}: {item.Value}");
        }

        // b) Sắp xếp giá trị theo thứ tự tăng dần theo số lần xuất hiện
        List<KeyValuePair<int, int>> sortedList = new List<KeyValuePair<int, int>>(frequency);
        sortedList.Sort((x, y) => x.Value.CompareTo(y.Value));

        Console.WriteLine("Các giá trị sau khi sắp xếp:");
        foreach (var item in sortedList)
        {
            Console.WriteLine($"{item.Key}: {item.Value}");
        }

        // c) Lưu vào tệp tin .txt
        string filePath = "output.txt";
        using (StreamWriter writer = new StreamWriter(filePath))
        {
            writer.WriteLine("Các giá trị trùng nhau và số lần trùng:");
            foreach (var item in frequency)
            {
                writer.WriteLine($"{item.Key}: {item.Value}");
            }

            writer.WriteLine("Các giá trị sau khi sắp xếp:");
            foreach (var item in sortedList)
            {
                writer.WriteLine($"{item.Key}: {item.Value}");
            }
        }

        Console.WriteLine($"Kết quả đã được lưu vào tệp tin: {filePath}");
    }
}

Mong lần sau, bạn tập trung học và đừng có ý định gian lận thi cử như vậy

thinh12112001 đã bình luận 08:39 31-05-2023
using System;
using System.Collections.Generic;
using System.IO;

class Program
{
static void Main()
{
Console.Write("Nhập kích thước của mảng: ");
int size = Convert.ToInt32(Console.ReadLine());

int[] array = new int[size];

Console.WriteLine("Nhập các phần tử của mảng:");

for (int i = 0; i < size; i++)
{
Console.Write("Phần tử thứ {0}: ", i + 1);
array[i] = Convert.ToInt32(Console.ReadLine());
}

// Tạo từ điển để đếm số lần xuất hiện của mỗi phần tử
Dictionary countDictionary = new Dictionary();

for (int i = 0; i < size; i++)
{
if (countDictionary.ContainsKey(array[i]))
{
countDictionary[array[i]]++;
}
else
{
countDictionary[array[i]] = 1;
}
}

Console.WriteLine("Các giá trị trùng nhau và số lần trùng:");

foreach (var pair in countDictionary)
{
if (pair.Value > 1)
{
Console.WriteLine("Giá trị {0} - Số lần trùng: {1}", pair.Key, pair.Value);
}
}

// Sắp xếp lại các giá trị theo thứ tự tăng dần theo số lần xuất hiện
List> sortedList = new List>(countDictionary);

sortedList.Sort((x, y) => x.Value.CompareTo(y.Value));

Console.WriteLine("Các giá trị theo thứ tự tăng dần theo số lần xuất hiện:");

foreach (var pair in sortedList)
{
Console.WriteLine("Giá trị {0} - Số lần trùng: {1}", pair.Key, pair.Value);
}

// Lưu kết quả vào tệp tin .txt
string filePath = "result.txt";

using (StreamWriter writer = new StreamWriter(filePath))
{
writer.WriteLine("Các giá trị trùng nhau và số lần trùng:");

foreach (var pair in countDictionary)
{
if (pair.Value > 1)
{
writer.WriteLine("Giá trị {0} - Số lần trùng: {1}", pair.Key, pair.Value);
}
}

writer.WriteLine("Các giá trị theo thứ tự tăng dần theo số lần xuất hiện:");

foreach (var pair in sortedList)
{
writer.WriteLine("Giá trị {0} - Số lần trùng: {1}", pair.Key, pair.Value);
}
}

Console.WriteLine("Kết quả đã được lưu vào tệp tin {0}", filePath);
}
}
Linh92_visuastudio đã bình luận 00:08 31-05-2023

Anh em htro với ạ.

Sáng mai nộp bài rồi.

Muộn là 9h sáng ngày 31.05.2023

xin cảm ơn anh em

Câu hỏi mới nhất