G+_Ray Albadon Posted February 17, 2014 Share Posted February 17, 2014 Ok, working on the "Ivory Tower" example in the Show Notes on the Coding101 Episode 4 page. Did this: int UserInput; Console.WriteLine("Input a number between 1 and 10"); Console.Read (UserInput); Using this gives an error "No overload method for 'Read' takes 1 arguments". Finally got it to work by changing it around a lot: int UserInput; Console.WriteLine("Input a number between 1 and 10"); UserInput = int.Parse(Console.ReadLine()); Link to comment Share on other sites More sharing options...
G+_Fr. Robert Ballecer, SJ Posted February 17, 2014 Share Posted February 17, 2014 Ivory Tower is Pseudocode. Always use the code from our github site. :) Link to comment Share on other sites More sharing options...
G+_Cosmic Ray Posted February 17, 2014 Share Posted February 17, 2014 I looked at the code for that episode on github but I don't see where it includes the example from Ivory Tower. By "Pseudocode", then, do you mean phony code that doesn't actually work and we should thus ignore it? Got it! Link to comment Share on other sites More sharing options...
G+_Joseph Weaver Posted February 18, 2014 Share Posted February 18, 2014 No pseudo code is a way to work out the logic of what needs to be done to accomplish a task in a language between human language and proper computer code. Link to comment Share on other sites More sharing options...
Recommended Posts