i have a program that takes multiple excel files of students' tasks and merge them into one file. each file has columns name, score and other things... i merged them into one file and this file now has column 'score' which is the total score and another score columns for each file like 'score1', 'score2', 'score3',... based on how many files there.
i used CLI so the user enter the folder name which contains the files.
i added a column 'value' to know if a student is accepted or not based on a condition. there are many options to choose the condition from. example if the score of all tasks is higher than 10 then he is accepted.
another option: the student should have at least 10 scores in tasks 1-2 and at least 10 scores in tasks 3-4.
the user should choose the option and enter it in CLI too.
what should i do if the user wants this option: the student should have at least 20 scores in tasks 1-3 and at least 10 scores in tasks 4-6. ? i don't want the user to change the code