can I have some suggestions on how to create a calendar that says the free days of the user?
I will explain it better: I'd like to create a program (possibly in C++ or Java since we are learning that at school) that reads (maybe in a txt file or something) the days where I am busy and exclude them and then get the output of the other days.
Example:
My txt file contains:
13, 14, 20, 21, 25, 11, 3, 30
Expected output from the program
1,2,4,5,6,7,8,9,10,12,15,16,17,18,19,22,23,24,26,27,28,29,31
Sorry for the stupid question but I'm new to programming and would like to learn, thanks for any advice, and if something is unclear please let me know!