C# 3 Different Variables and Input | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

C# 3 Different Variables and Input

Hello, I am new to C# and was hoping to get some feedback on my code. I'm trying to make this an interactive program by the three response variables. Your help is greatly appreciated. using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine("What is your name?"); var v1 = Console.ReadLine(); Console.WriteLine("Hello " + v1); Console.WriteLine("Do you like programming?"); var v1 = Console.ReadLine(); if v1 = ("yes"); Console.WriteLine("That's awesome!"); if v1 == ("no"); Console.WriteLine("Why?"); Console.ReadLine(); if v1 == ("maybe"); Console.WriteLine("You must be kidding me!");

21st Jul 2018, 11:19 PM
Alex
Alex - avatar
1 Answer
0
add "else" before the last two if statements, no need to check if the input is "no" if we've already established it's "yes". also you need brackets surrounding the entire if statement, not just the string you're comparing to.
22nd Jul 2018, 7:23 AM
hinanawi
hinanawi - avatar