diff --git a/TASKS/Task 001.c b/TASKS/Task 001.c index 24be041..052e99e 100644 --- a/TASKS/Task 001.c +++ b/TASKS/Task 001.c @@ -4,4 +4,19 @@ Write a program that prints the alphabet in lowercase, followed by a new line. Print all the letters except q and e use printf -*/ \ No newline at end of file +*/ + +int main() +{ + int alphabet; + + for (alphabet = 'a'; alphabet <= 'z'; alphabet++) + { + if (alphabet == 'e' || alphabet == 'q') + continue; + printf(alphabet); + } + printf("\n"); + + return (0); +} diff --git a/TASKS/Task 002.c b/TASKS/Task 002.c index 5cdd390..71f1bf0 100644 --- a/TASKS/Task 002.c +++ b/TASKS/Task 002.c @@ -3,4 +3,4 @@ Write a program that asks and reads the score of a user If the score is less than 80, display to the user that they are not elgible to be enrolled. If the score is greater than or equal 80, they can be enrolled. -*/ \ No newline at end of file +*/