Advertisement
IGRODELOFF

Task 23

Apr 13th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.44 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Task23
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string dataInput = "Введите: \n" +
  10.                 "1) Число, если хотите добавить число в массив. \n" +
  11.                 "2) Введите sum, чтобы получить сумму всех эллементов массива. \n" +
  12.                 "3) Введите exit, чтобы выйти из программы.";
  13.             string userInput;
  14.             int stepIncrementArray = 1;
  15.             int[] array = new int[stepIncrementArray];
  16.             int minValue = 0;
  17.             int sum = 0;
  18.  
  19.             bool checkExit = false;
  20.             bool checkSum = true;
  21.  
  22.             while (checkExit == false)
  23.             {
  24.                 Console.WriteLine(dataInput);
  25.                 userInput = Console.ReadLine().ToLower();
  26.                 for (int i = minValue; i < array.Length; i++)
  27.                 {
  28.                     Console.WriteLine("\nЭлемент массива: " + array[i]);
  29.                 }
  30.  
  31.                 switch (userInput)
  32.                 {
  33.                     case "exit":
  34.                         checkExit = true;
  35.                         break;
  36.                     case "sum":
  37.                         if (checkSum == false)
  38.                         {
  39.                             for (int i = minValue; i < array.Length; i++)
  40.                             {
  41.                                 sum += array[i];
  42.                                 checkSum = true;
  43.                             }
  44.                         }
  45.                         else
  46.                         {
  47.                             Console.WriteLine("Сумма элементов массива равна: " + sum);
  48.                         }
  49.                         Console.WriteLine(sum);
  50.                         break;
  51.                     default:
  52.                         int[] tempArray = new int[array.Length + stepIncrementArray];
  53.                         for (int i = 0; i < array.Length; i++)
  54.                         {
  55.                             tempArray[i] = array[i];
  56.                         }
  57.                         tempArray[tempArray.Length - stepIncrementArray] = Convert.ToInt32(userInput);
  58.                         array = tempArray;
  59.                         checkSum = false;
  60.                         break;
  61.                 }
  62.             }
  63.         }
  64.     }
  65. }
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement