From 12abfc4de986bb783bb1a5b0223f9a5191e1fbfe Mon Sep 17 00:00:00 2001 From: fdlt3914 Date: Fri, 27 Jan 2023 21:40:09 +0000 Subject: [PATCH] refactoring: edit instructions to make it readable --- src/main/quizproject.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/main/quizproject.c b/src/main/quizproject.c index 8cc1af0..34631f3 100644 --- a/src/main/quizproject.c +++ b/src/main/quizproject.c @@ -61,15 +61,18 @@ void displayGameInstructions(char vorName[], char nachName[]) { printf("\t\t To start this game, here are the Instructions\n\n"); printf("\t\t------------------------------------------\n"); printf("\t\t------------------------------------------\n\n"); - printf("\t\tYou will be presented with questions from Round 1(Super Easy) to Round 5(Very Hard).\n"); - printf("\t\tFor every question you have four options (A, B, C, D).\n"); - printf("\t\tFor each question, you can either choose the answer from the four options or use a lifeline.\n\n"); + printf("\t\t>>You will be presented with questions from\n"); + printf("\t\tRound 1 to Round 3(Easy rounds) and Round\n"); + printf("\t\t4 to Round 5(Hard rounds).<<\n"); + printf("\t\t>>For every question you have four options (A, B, C, D).<<\n"); + printf("\t\t>>For each question, you can either choose the\n"); + printf("\t\tanswer from the four options or use a lifeline.<<\n\n"); printf("\t\t>>To Pass Through Round 1: You have to get 3 out of 5 correct.<<\n"); printf("\t\t>>To Pass Through Round 2: You have to get 3 out of 5 correct.<<\n"); printf("\t\t>>To Pass Through Round 3: You have to get 4 out of 5 correct.<<\n"); printf("\t\t>>To Pass Through Round 4: You have to get 4 out of 5 correct.<<\n"); printf("\t\t>>To Pass Through Round 5: You have to get 5 out of 5 correct.<<\n\n"); - printf("\t\tIf you choose the wrong answer, you lose a point.\n\n"); + printf("\t\t>>If you choose the wrong answer, you lose a point.<<\n\n"); printf("\t\tYou may lose the game if not you don't have enough points to pass to the next round.\n\n"); printf("\t\tIf you use a lifeline and still choose the wrong answer, you lose the game.\n"); }