Hỏi đáp

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

Giúp em sửa lỗi C#

22:23 31-08-2024 176 lượt xem 2 bình luận

int rows;
int columns;
Console.Write("Moi ban nhap so hang ");

if (int.TryParse(Console.ReadLine(), out rows))
{
    Console.Write("\nSo hang la " + rows);
}
else
{
    Console.Write("\nSo hang khong hop le ");
}
Console.Write("\nMoi ban nhap so cot ");

if (int.TryParse(Console.ReadLine(), out columns))
{
    Console.Write("\nSo cot la " + columns);
}
else
{
    Console.Write("\nSo cot khong hop le ");
}
int [,] IntArray = new int[rows,columns];

for (int i = 0; i < IntArray.GetLength(0); i++)
{
    for (int j = 0; j < IntArray.GetLength(1); j++)
    {
        IntArray[i, j] = i + j; 
    }
}
Console.WriteLine("\nMang cua ban la [{0}, {1}]", rows, columns);
int sum = 0;

for (int i = 0; i <IntArray.GetLength(0); i++)
{
    for (int j = 0; j<IntArray.GetLength(1); j++)
    {
        Console.WriteLine(IntArray[i, j] + " ");
        sum = sum + IntArray[i,j];   
    }
    Console.WriteLine("Tong cua ban la" + sum);
}
Console.ReadKey();

 

do em không biết đưa hình lên như nào. Vị huynh đài nào rảnh có thể copy paste chạy thử sẽ biết nó bị gì ạ. Trông nó cứ sai sai kiểu gì í :((

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
NhatHaBG123 đã bình luận 10:30 06-09-2024
Bạn lạp trình trên nền tảng nào
Vo Tan Duc đã bình luận 08:42 06-09-2024
Chạy thử thì biết bạn

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