Advertisement
wingman007

ProgrammingBasicts3a_exc1

Sep 13th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.50 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace HelloWorld3a
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Hello world аояьяоао!");
  14.             Console.Beep(500, 1000);
  15.  
  16.             byte age = 53;
  17.             decimal money;
  18.             char firstLetter = 'S';
  19.             string name = "Stoyan";
  20.             bool isMale = true;
  21.  
  22.             money = 2.54m;
  23.  
  24.             firstLetter = 'T';
  25.  
  26.             Console.WriteLine("I am {0} years old.", age);
  27.             Console.WriteLine("I have {0} money!", money);
  28.             Console.WriteLine("I am {1} years old!. The first letter of my name is {0}. ", firstLetter, age);
  29.             Console.WriteLine("My name is {0}", name);
  30.             Console.WriteLine("Am I a man?{0}", isMale);
  31.  
  32.             byte a = 13;
  33.             byte b = 5;
  34.             // 1.
  35.             Console.WriteLine("{0} + {1} = {2}",a, b, a + b);
  36.             Console.WriteLine("{0} - {1} = {2}", a, b, a - b);
  37.             Console.WriteLine("{0} * {1} = {2}", a, b, a * b);
  38.             Console.WriteLine("{0} / {1} = {2}", a, b, a / b);
  39.             Console.WriteLine("{0} % {1} = {2}", a, b, a % b);
  40.             Console.WriteLine("++{0}  = {1}", a, ++a);
  41.  
  42.             // 2. comparison
  43.             Console.WriteLine("{0} < {1} = {2}", a, b, a < b);
  44.             Console.WriteLine("{0} > {1} = {2}", a, b, a > b);
  45.             Console.WriteLine("{0} <= {1} = {2}", a, b, a <= b);
  46.             Console.WriteLine("{0} >= {1} = {2}", a, b, a >= b);
  47.             Console.WriteLine("{0} == {1} = {2}", a, b, a == b);
  48.             Console.WriteLine("{0} == {1} = {2}", a, b, a != b);
  49.            
  50.             // 3. Boolean
  51.             bool c = true;
  52.             bool d = false;
  53.  
  54.             Console.WriteLine("{0} && {1} = {2}", c, d, c && d);
  55.             Console.WriteLine("{0} || {1} = {2}", c, d, c || d);
  56.             Console.WriteLine("{0} ^ {1} = {2}", c, d, c ^ d);
  57.             Console.WriteLine("!{0} = {1}", c, !c);
  58.  
  59.             // kdjsfhsdkfjh askjfsdk fdkjh fksjh fkjsd
  60.             // a = 5; // a = a + 5;
  61.  
  62.             Console.WriteLine("{0} << 1 {1}", 1, 1 << 1);
  63.             Console.WriteLine("{0} >> 1 {1}", 1, 1 >> 1);
  64.             Console.WriteLine("{0} | {1} = {2}", a, b, a | b);
  65.             Console.WriteLine("{0} & {1} = {2}", a, b, a & b);
  66.             Console.WriteLine("{0} ^ {1} = {2}", a, b, a ^ b);
  67.             Console.WriteLine("~{0} = {1}", a, ~a);
  68.  
  69.             Console.WriteLine("Please, enter your age:");
  70.             string input = Console.ReadLine();
  71.             byte newAge = byte.Parse(input);
  72.  
  73.             Console.WriteLine("In 10 years you will be {0}", input + 10);
  74.  
  75.             if( newAge <= 18 )
  76.             {
  77.                 Console.WriteLine("You are a teenager!!!");
  78.             }
  79.             else if (newAge > 18 && newAge <= 30)
  80.             {
  81.                 Console.WriteLine("You are in a golden age!");
  82.             }
  83.             else
  84.             {
  85.                 Console.WriteLine("You are an adult!");            
  86.             }
  87.  
  88.             switch (newAge)
  89.             {
  90.                 case 22 :
  91.                 case 23 :
  92.                     Console.WriteLine("You are 23 years old. You are very sick person!");
  93.                     break;
  94.                 default :
  95.                     Console.WriteLine("I don't know what to say!");
  96.                     break;
  97.             }
  98.  
  99.         }
  100.     }
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement