Why am i not geting user input? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
16th Mar 2020, 2:38 PM
Icebreaker
Icebreaker - avatar
4 Answers
0
Try google an error that you've got in console.
16th Mar 2020, 2:39 PM
Vladyslav Semeniuk 🐸
Vladyslav Semeniuk 🐸 - avatar
0
Change single quotes to double quotes and line 42 Console instead of Consol. There might be more errors but first change this one.
16th Mar 2020, 2:44 PM
Viktor Sokolov
Viktor Sokolov - avatar
0
Ty
16th Mar 2020, 2:44 PM
Icebreaker
Icebreaker - avatar
- 1
Found these : name = Console.ReadLine(); //no space before (). double mark; mark = Console.ReadLine(); 'A' is a charecter. 'A+' is not charecter it is string. There may be more.. I didnot check full... Edit: Icebreaker var name =Console.ReadLine(); //no space and should in one line for var input. double mark; mark =(Convert.ToDouble(Console.ReadLine())); //input string form should converted to double type. string grade; if (mark == 100.0){ grade = "A+"; //string assignment use double coutes. // for string comparison, use Equals method not ==. == compares reference Equal method compares contents. So string aoran=(grade.Equals("A") ? aoran=" an " : aoran = " a ");
16th Mar 2020, 2:44 PM
Jayakrishna 🇮🇳