Guest User

Untitled

a guest
Oct 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Arvaa väri?:");
  10. string turkoosi = Convert.ToString(Console.ReadLine());
  11.  
  12. if (turkoosi == "oikein")
  13. {
  14. Console.WriteLine("oikein");
  15. }
  16. else
  17. {
  18. Console.WriteLine();
  19. }
  20. Console.WriteLine("Väärin");
  21. Console.ReadLine();
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment