using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication34
{
class Program
{
static void Main(string[] args)
{
int[,] a = new int[3, 3];
int[,] b = new int[3, 3];
int[,] c = new int[3, 3];
int i, j;
Console.Write("\n\n\n A Matrisi B Matrisi ");
for (i = 0; i <= 2; i++)
{
for (j = 0; j <= 2; j++)
{
Console.SetCursorPosition((j + 1) * 5, i + 5);
a[i, j] = int.Parse(Console.ReadLine());
Console.SetCursorPosition((j + 6) * 5, i + 5);
b[i, j] = int.Parse(Console.ReadLine());
}
}
Console.WriteLine("==================MATRİS TOPLAMI===================");
for (i = 0; i <= 2; i++)
{
for (j = 0; j <= 2; j++)
{
c[i, j] = a[i, j] + b[i, j];
Console.Write("{0,7}", c[i, j]);
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}
SEARCH
SON PAYLAŞIMLAR
3-latest-65px
ETİKETLER
- 5. Sınıf 1. Dönem (8)
- 5. Sınıf BTY (8)
- 6. Sınıf BTY (1)
- Kişisel (3)
- Lise (9)
- Scratch (11)
- Üniversite - C# (39)
Hiç yorum yok:
Yorum Gönder