Advertisement
wingman007

2016HelloWorld1a

Sep 17th, 2016
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.07 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 HelloWorld1a
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Hello World!");
  14.  
  15.             ulong age = 52u;
  16.             decimal money = 2.54m;
  17.             char firstLetter = 'S';
  18.             string name = "Mariya";
  19.  
  20.             Console.WriteLine("Your age in 10 years will be : " + (age + 10));
  21.  
  22.             Console.WriteLine("Tell me your age?");
  23.             string input = Console.ReadLine();
  24.             int age2 = int.Parse(input);
  25.  
  26.             Console.WriteLine("Your age in 5 years will be: " + (age2 + 5));
  27.  
  28.             if (age2 < 20)
  29.             {
  30.                 Console.WriteLine("You are a teenager!!!");
  31.             }
  32.             else if (20 <= age2 && age2 <= 30)
  33.             {
  34.                 Console.WriteLine("You must be a student!");
  35.             }
  36.             else
  37.             {
  38.                 Console.WriteLine("You are an adult!");
  39.             }
  40.  
  41.             switch (age2)
  42.             {
  43.                 case 22 :
  44.                 case 23 :
  45.                     Console.WriteLine("You are 22 or 23 years old. Very sick!");
  46.                     break;
  47.                 default :
  48.                     Console.WriteLine("I see a bad spell!");
  49.                     break;
  50.             }
  51.  
  52.             /*
  53.             Console.WriteLine(1);
  54.             Console.WriteLine(2);
  55.             Console.WriteLine(3);
  56.             Console.WriteLine(4);
  57.             */
  58.             int i = 1;
  59.             while (i <= 10)
  60.             {
  61.                 if (i == 5) break;
  62.                 Console.WriteLine(i);
  63.                 i++;
  64.             }
  65.  
  66.             i = 1;
  67.             do
  68.             {
  69.                 Console.WriteLine("do-while: {0}", i);
  70.                 i++;
  71.             } while(i <= 10);
  72.  
  73.             for (i = 0; i < 10; i++)
  74.             {
  75.                 Console.WriteLine("for {0}", i);
  76.             }
  77.  
  78.             string[] studentNames = { "Boryana", "Mariya", "Petya", "Elena", "Georgi", "Mitko", "Sasho", "Nikoleta", "Alex", "Petar", "Mitko" };
  79.  
  80.             foreach(string nameSt in studentNames)
  81.             {
  82.                 Console.WriteLine(nameSt);
  83.             }
  84.  
  85.             for (i = 0; i < 10; i++)
  86.             {
  87.                 for(int j = 0; j < i; j++)
  88.                 {
  89.                     // Console.Write(new String(' ', 10/2 - i) + '*');
  90.                     Console.Write('*');
  91.                 }
  92.                 Console.WriteLine();
  93.             }
  94.  
  95.             // 1.
  96.             // int[] myArray;
  97.             // myArray = new int[5];
  98.  
  99.             // 2.
  100.             // int[] myArray = new int[5];
  101.  
  102.             // 3.
  103.             // int[] myArray = { 0, 0, 0, 0, 45};
  104.             int[] myArray = new int[5] { 0, 0, 0, 0, 45 };
  105.  
  106.             myArray[4] = 45;
  107.  
  108.             for (i = 0; i < myArray.Length; i++)
  109.             {
  110.                 Console.WriteLine("myArray[{0}] = {1}", i, myArray[i]);
  111.             }
  112.  
  113.             string[,] positionsOfTheStudents = {
  114.                    {"Boryana", "Mariya","","Petya","Elena","", "",""},
  115.                    {"Georgi", "Mitko","","Sasho","Nikoleta","", "Alex",""},
  116.                    {"", "","","","","", "Petar","Mitko"}
  117.             };
  118.  
  119.             for(i = 0; i < positionsOfTheStudents.GetLength(0); i++)
  120.             {
  121.                 for (int j = 0; j < positionsOfTheStudents.GetLength(1); j++)
  122.                 {
  123.                     Console.WriteLine("Row {0} Col {1} : {2}", i, j, positionsOfTheStudents[i,j]);
  124.                 }
  125.             }
  126.  
  127.             int[][] jaggedArray;
  128.             jaggedArray = new int[2][];
  129.             jaggedArray[0] = new int[8];
  130.             jaggedArray[1] = new int[5];
  131.  
  132.  
  133.             byte result = 148;
  134.             Console.WriteLine(Convert.ToString(result, 2).PadLeft(16, '0'));
  135.             Console.WriteLine("{0,10:X}", result);
  136.             /*
  137.             for (i = 0; i < 10; i++)
  138.             {
  139.                 Console.Write("&");
  140.             }
  141.             for (i = 0; i < 15; i++)
  142.             {
  143.                 Console.Write("^");
  144.             }
  145.             */
  146.  
  147.             Console.WriteLine(createString(10, '%', "Stoyan", "Ivan"));
  148.             Console.WriteLine(createString(70,'$'));
  149.  
  150.             Console.WriteLine(factorial(4));
  151.  
  152.         }
  153.  
  154.         static string createString(int n, char c = '*', params string[] extra)
  155.         {
  156.             string temp = "";
  157.             for (int i = 0; i < n; i++)
  158.             {
  159.                 temp += c;
  160.             }
  161.  
  162.             if (extra.Length != 0 && extra[0] != null) Console.WriteLine(extra[0]);
  163.  
  164.             return temp;
  165.         }
  166.  
  167.         static int factorial(int n)
  168.         {
  169.             if (n == 0) return 1;
  170.             return factorial(n - 1) * n;
  171.         }
  172.  
  173.         static int factorialIteration(int n)
  174.         {
  175.             int temp = 1;
  176.             for (int i = 1; i <= n; i++)
  177.             {
  178.                 temp *= i;
  179.             }
  180.             return temp;
  181.         }
  182.  
  183.     }
  184. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement