Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Task23
- {
- class Program
- {
- static void Main(string[] args)
- {
- string dataInput = "Введите: \n" +
- "1) Число, если хотите добавить число в массив. \n" +
- "2) Введите sum, чтобы получить сумму всех эллементов массива. \n" +
- "3) Введите exit, чтобы выйти из программы.";
- string userInput;
- int stepIncrementArray = 1;
- int[] array = new int[stepIncrementArray];
- int minValue = 0;
- int sum = 0;
- bool checkExit = false;
- bool checkSum = true;
- while (checkExit == false)
- {
- Console.WriteLine(dataInput);
- userInput = Console.ReadLine().ToLower();
- for (int i = minValue; i < array.Length; i++)
- {
- Console.WriteLine("\nЭлемент массива: " + array[i]);
- }
- switch (userInput)
- {
- case "exit":
- checkExit = true;
- break;
- case "sum":
- if (checkSum == false)
- {
- for (int i = minValue; i < array.Length; i++)
- {
- sum += array[i];
- checkSum = true;
- }
- }
- else
- {
- Console.WriteLine("Сумма элементов массива равна: " + sum);
- }
- Console.WriteLine(sum);
- break;
- default:
- int[] tempArray = new int[array.Length + stepIncrementArray];
- for (int i = 0; i < array.Length; i++)
- {
- tempArray[i] = array[i];
- }
- tempArray[tempArray.Length - stepIncrementArray] = Convert.ToInt32(userInput);
- array = tempArray;
- checkSum = false;
- break;
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement