Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Динамический_массив
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int[] array = new int[0];
- string exit = "exit";
- string sum = "sum";
- bool isRun = true;
- while (isRun)
- {
- Console.WriteLine($"\nВведите число для записи в массив\nВведите {sum} - сложить введенные числа\nВведите {exit} - выход из программы\n ");
- string userInput = Console.ReadLine();
- if (userInput == exit)
- {
- isRun = false;
- }
- else if (userInput == sum)
- {
- int sumOfUserInput = 0;
- foreach (var number in array)
- {
- sumOfUserInput += number;
- }
- Console.WriteLine($"Сумма {sumOfUserInput}");
- for (int i = 0; i < array.Length; array[i++] = 0) { }
- }
- else
- {
- int[] tempArray = new int[array.Length + 1];
- int number = Convert.ToInt32(userInput);
- for (int i = 0; i < array.Length; i++)
- {
- tempArray[i] = array[i];
- }
- tempArray[tempArray.Length - 1] = number;
- array = tempArray;
- for (int i = 0; i < array.Length; i++)
- {
- Console.Write($"Вы ввели " + array[i] + " " + "\n");
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement