c# Tasks Planner (Programming Fundamentals Mid Exam - 30 June 2019 Group 2
Здравейте, колеги!
Имам нужда от вашето мнение относно Task Planner. Проблемът е, че кодът ми работи(
using System;
using System.Linq;
using System.Collections.Generic;
namespace Tasks_Planner
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] tasksHours = Console.ReadLine().Split().Select(int.Parse).ToArray();
            string input = Console.ReadLine();
            int countCompleted = 0;
            int countInCompleted = 0;
            int countDropped = 0;
            while (input != "End")
            {
                string[] command = input.Split().ToArray();
                switch (command[0])
                {
                    case "Complete":
                        int index = int.Parse(command[1]);
                        if (index < 0 || index >= tasksHours.Length)
                        {
                            continue;
                        }
                        tasksHours[index] = 0;
                        break;
                    case "Change":
                        index = int.Parse(command[1]);
                        if (index < 0 || index >= tasksHours.Length)
                        {
                            continue;
                        }
                        int newTime = int.Parse(command[2]);
                        tasksHours[index] = newTime;
                        break;
                    case "Drop":
                        index = int.Parse(command[1]);
                        if (index < 0 || index >= tasksHours.Length)
                        {
                            continue;
                        }
                        tasksHours[index] = -1;
                        break;
                    case "Count":
                        string secondCommandCount = command[1];
                        if (secondCommandCount == "Completed")
                        {
                            foreach (int taskHour in tasksHours)
                            {
                                if (taskHour == 0)
                                {
                                    countCompleted++;
                                }
                            }
                            Console.WriteLine(countCompleted);
                        }
                        else if (secondCommandCount == "Incomplete")
                        {
                            foreach (int taskHour in tasksHours)
                            {
                                if (taskHour > 0)
                                {
                                    countInCompleted++;
                                }
                            }
                            Console.WriteLine(countInCompleted);
                        }
                        else if (secondCommandCount == "Dropped")
                        {
                            foreach (int taskHour in tasksHours)
                            {
                                if (taskHour < 0)
                                {
                                    countDropped++;
                                }
                            }
                            Console.WriteLine(countDropped);
                        }
                        break;
                }
                input = Console.ReadLine();
            }
            foreach (int taskHour in tasksHours)
            {
                if (taskHour > 0)
                {
                    Console.Write(taskHour+" ");
                }
               
            }
           
        }
    }
}
), но ми дава RunTime error в Judge,съответно на тест 2,4 и 6 и получавам 70/100. Много ще съм ви благодарна за някакви насоки!
Поздрави.
Дени
Tasks Planner
Create a program that helps you organize your daily tasks. First, you are going to receive the hours each task takes оn a single line, separated by space, in the following format:
"{task1} {task2} {task3}… {taskn}"
Each task takes from 1 to 5 hours. If its time is set to 0 – it is completed. If its time is set to a negative number – the task is dropped.
Then you will start receiving commands until you read the "End" message. There are six possible commands:
- "Complete {index}"
	- Find the task on this index in your collection and complete it, if the index exists.
 
- "Change {index} {time}"
	- Replace the time needed of the task on the given index with the time given, if the index exists.
 
- "Drop {index}"
	- Drop the task on the given index, setting its hour to -1, if the index exists.
 
- "Count Completed"
	- Print the number of completed tasks.
 
- "Count Incomplete"
	- Print the number of incomplete tasks (this doesn’t include the dropped tasks).
 
- "Count Dropped"
	- Print the number of dropped tasks (this doesn’t include the incomplete tasks).
 
In the end, print the incomplete tasks on a single line, separated by a single space in the following format:
"{task1} {task2} {task3}… {taskn}"
Input
- On the 1st line you are going to receive the time of each task, separated by a single space.
- On the next lines, until the "End" command is received, you will be receiving commands.
Output
- Print the tasks in the format described above.
Examples
| Input | Output | 
| 1 -1 2 3 4 5 Count Dropped | 2 | 
| Comments | |
| First, we receive the command "Complete 4" and we to complete the task on index 4. After this command, the task collection looks like this: 1 -1 2 3 0 5 Afterwards, we receive the "Change 0 4" command and we need to change the time of the task on index 0. The collection looks like this now: 4 -1 2 3 0 5 After, we receive the "Drop 3" command, which means we need to drop the task on index 3. The collection looks like this: 4 -1 2 -1 0 5 Then, we receive the "Count Dropped" command. The result is 2 as we have only 2 dropped tasks. In the end, we print all of the incomplete tasks. This is the result collection: 4 2 5 
 | |
| 
 | |
| 1 2 3 4 5 4 0 3 2 1 Count Completed | 4 |