Find You Pc
//HERES SOME TIPS BEFORE COPY AND PASTE: //Press cntrl and A to copy everything //Check Brackeys c# 1st tutorial and download visual studio code for this //to work.Or else,you will have to change the code at NameSpace //Give credit in case of video(GostGK) //HERES THE CODE: //-------------------------------------------- using System; namespace My_Awesome_Program { class Program { static void Main(string[] args) { int PcParts1 = 0; Console.WriteLine("Welcome to Pc Builder!"); Console.WriteLine("Please write how much will your pc cost: "); int UserBudget = Convert.ToInt32(Console.ReadLine()); if (UserBudget <= 250) { PcParts1 = PcParts1 + 1; ...