Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triể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