Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Testowanie_umjejetnosci
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Hello Admin! What is your name");
  10.             string nameOfAdmin = Console.ReadLine();
  11.  
  12.             Console.WriteLine("Ok so " + nameOfAdmin + ". " + "Lets play the game ");
  13.             Console.WriteLine("What's your color of shirt that's you'r wearing now");
  14.             string colorOfShirt = Console.ReadLine();
  15.  
  16.             string message = (colorOfShirt == "Black") ? "That's what I thinking" : "You always wearing the black shirts...";
  17.             Console.WriteLine(message);
  18.  
  19.             Console.ReadLine();
  20.  
  21.  
  22.  
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement