Şimdi Ara

C# ta Matris yazdirma....

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
2 Misafir - 2 Masaüstü
5 sn
2
Cevap
0
Favori
2.460
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • bu koddaki hatayi bir turlu bulamadim ..Null referens Exeption veriyo ...Yapmaya çalısıtıgım kendı elle sütun ve satır degerı gırıp sonra teker teker sayılar yerlestırmek ve yazdırmak ..
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace ConsoleApplication3
    {
    class Labbb


    {

    int P;
    int T;
    int i, j,k,l,m,n;
    int[,] P2T;
    int[,] T2P;

    public void giris(){

    Console.WriteLine("Insert How Many Protwesor:");
    P =int.Parse ( Console.ReadLine());
    Console.WriteLine("Insert How Many Transmistor");
    T = int.Parse (Console.ReadLine());

    }

    public void w_matris()
    {


    for (i = 0; i <=P; i++)

    for (j = 0; j <=T;j++)
    {
    Console.WriteLine("P" +(i+1) + " TO T" + (j+1) );
    P2T[i,j] = int.Parse(Console.ReadLine());

    }

    for (i =0; i <=P2T.Length; i++)
    {
    for (j=0; j <=P2T.Length; j++)

    Console.Write(+P2T[i,j]);


    }
    Console.WriteLine("");
    }


    static void Main(string[] args) {


    Labbb g = new Labbb();
    g.giris();
    g.w_matris();


    Console.ReadKey();


    }

    }

    }







  • Sorun çözülmüştür
  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.