Guest User

Untitled

a guest
Jan 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. class MainClass
  2. {
  3. public static void Main (string[] args)
  4. {
  5. Console.WriteLine ("Please enter your name: ");
  6. string name;
  7. name = Console.ReadLine ();
  8. Console.WriteLine ("Hello, " + name);
  9. int score;
  10. Console.Write ("What are your last three test scores: ");
  11. score = Int32.Parse(Console.ReadLine ());
  12. Console.WriteLine("Your test scores are" + score + "90,92,95");}
  13. }
Add Comment
Please, Sign In to add comment