]using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Buffers;
namespace ConsoleApp1
{
public class Car
{
string brand;
string renk;
string model; // field
int hiz; // field
int bools;
public void FullThrottle() // method
{
Console.WriteLine("For English Press 1/Türkçe İçin 0'a Basın");
bools = Convert.ToInt32(Console.ReadLine());
if (bools == 1)
{
Console.WriteLine("What İs the brand of your car ? ");
brand = Console.ReadLine();
Console.WriteLine("How fast yours car can go ? ");
hiz = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What is the model of your car ? ");
model = Console.ReadLine();
Console.WriteLine("What İs the color of your car ? ");
renk = Console.ReadLine();
Console.WriteLine($"The Brand Of Your Car is = " + brand);
Console.WriteLine($"The Maximum Speed Of Your Car is = " + hiz);
Console.WriteLine($"The Model Of Your Car is = " + model);
Console.WriteLine($"The Color Of Your Car is = " + renk);
}
else
{
Console.WriteLine("Arabanın Markası Ne?");
brand = Console.ReadLine();
Console.WriteLine("Arabanın Max Hızı Nedir?");
hiz = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Arabanın Modeli Nedir?");
model = Console.ReadLine();
Console.WriteLine("Arabanın Rengi Nedir?");
renk = Console.ReadLine();
Console.WriteLine($"Aracınızın Markası = " + brand);
Console.WriteLine($"Aracınızın Max Hızı = " + hiz);
Console.WriteLine($"Arabanızın Modeli = " + model);
Console.WriteLine($"Arabanızın Rengi = " + renk);
}
}
public class Car2
{
int booling;
public void SecondCar()
{
Car nesnem = new Car();
Console.WriteLine("Do You Have Any Other Car ? For Yes Type 1 , For No Type 0 ");
Console.WriteLine("Başka Arabanız Var Mı ? Evet İçin 1 Yazın , Hayır İçin 0 Yazın");
booling = Convert.ToInt32(Console.ReadLine());
if (booling == 1)
{
nesnem.FullThrottle();
}
else
{
Console.WriteLine("Have a Nice Day");
Console.WriteLine("İyi Bir Gün Geçirin");
}
}
}
public class Program
{
static void Main(string[] vs)
{
Car nesnem1 = new Car();
Car2 nesnem2 = new Car2();
nesnem1.FullThrottle(); // Call the method
nesnem2.SecondCar();
}
}
}
}
Kodu Daha İyi Bi Hale Getirmenin Yolu Var mı?