SyphronX
Kilopat
- Katılım
- 15 Haziran 2019
- Mesajlar
- 13
Daha fazla
- Sistem Özellikleri
- ASUS TUF RTX 5070Ti 16G GDDR7 OC, AMD Ryzen 7 9700X, Corsair Vengeance RGB 32 GB (2x16) 6000 MHz CL30, Asus PRIME B650M-R AMD DDR5 7200+(OC) HDMI M.2 AM5, Thermalright Frozen Prism 240 ARGB 240mm, Corsair CX750 CP-9020279-EU 750 W Power Supply
- Cinsiyet
- Erkek
- Meslek
- Yazılım
Kod:
using System;
using System.Linq;
namespace Sıralar_deneme_1;
public static class Program
{
public static void Main()
{
string[]isimler=new string[3];
int[,] notlar=new int[3,4];
int index=0;
if(index<isimler.Length){
Console.WriteLine("Öğrencnin adını giriniz ");
isimler[index]=Console.ReadLine();
Console.WriteLine("Notlarını giriniz ");
notlar[index]=int.Parse(Console.ReadLine()); //Hata ^ burada
index++;
}
}
}