using System; namespace MyFirstProgram { class Program { static void Main(string[] args) { //if statement = a basic form of decision making // -------------------- Example 1 -------------------- Console.WriteLine("Please enter your age: "); int age = Convert.ToInt32(Console.ReadLine()); if (age >= 18) { Console.WriteLine("You are now signed up!"); } else if (age < 0) { Console.WriteLine("You haven't been born yet!"); } else { Console.WriteLine("You must be 18+ to sign up!"); } // -------------------- Example 2 -------------------- Console.WriteLine("Please enter your name: "); String name = Console.ReadLine(); if (name == "") { Console.WriteLine("You did not enter your name!"); } else { Console.WriteLine("Hello " + name); } Console.ReadKey(); } } }
@snahhhhhhh Жыл бұрын
Thanks bro
@PersonCoding6 ай бұрын
Hi bro
@Operius882 ай бұрын
bro really doesnt know how many test he's saved me from failing :)
@jd_me13302 жыл бұрын
Being trying to get through this problem since ages. watched at least 20 vids
@kultaseppa2 жыл бұрын
Very helpful! Thank you sir
@unwind88582 жыл бұрын
Can you If else multiple choices question? Like only letter A,B,C will be accepted and then count how many times you choose each Letter to get the result of the test.
@damirusensith56112 жыл бұрын
You just helped me with my assignment,, thank u :)
@leandrosantorsola684 Жыл бұрын
Excellent, thanks!
@y-it42072 жыл бұрын
OMG thank you sooooo much. I’ve been trying to make a chat bot and this is just what I need!
@alexiscoe10403 жыл бұрын
Very helpful, thanks
@viniciuslima1064Ай бұрын
Thanks bro
@engirckt54103 жыл бұрын
best online class ever!
@spartanranger3 жыл бұрын
Thanks for the video Bro.
@quexpRPG6 ай бұрын
Oooh, thank you for this!
@ykta_art7 ай бұрын
Thanks ❤
3 жыл бұрын
Thanks!
@whitedinamo2 жыл бұрын
lesson check😇
@zapoyou2 Жыл бұрын
Bro, great video.
@simik48302 ай бұрын
comment for algorithm!
@ArnoldNatasha-f6f8 ай бұрын
Legend
@honeypunch12302 жыл бұрын
Thank you, bro code!
@movieworld8126 ай бұрын
" "You haven't been born yet" " 💀
@movieworld8126 ай бұрын
" "You are to old to sign up" " ☠️
@saferji85382 жыл бұрын
bro what if i entered a letter in age what code do i have to enter to restrict the letter from age hope u see this thanks
@Seth069 Жыл бұрын
well technically you can't, since it's an "int" prefix and not "string"
@RandomGuyOnDaFreakingNet Жыл бұрын
this guy also made a tutorial for C# exception statements, go watch that
@zanvee3 жыл бұрын
Can we use if statement for string variable?
@ykta_art7 ай бұрын
Yes if we use string Variable in first we can use it
@zanvee7 ай бұрын
@@ykta_art thanks for replying man i been waiting 2 years for my answers