Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace MyFirstApp
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- // Komunikat dla użytkownika
- Console.Clear();
- Console.WriteLine("Witajcie w quizie wiedzy!");
- Console.WriteLine("Odpowiedz na pytanie wpisując nr odpowiedzi.");
- Console.WriteLine("Za każdą poprawną odpowiedź otrzymasz 1 punkt.");
- // Dane programu
- string[] questions = {
- "Ile nóg ma pająk?",
- "Która planeta jest najbliżej Słońca?",
- "Jaki jest wynik działania 5 + 3?",
- "Stolica Polski to?",
- "Jaki jest największy ocean na Ziemi?"
- };
- string[,] answers = {
- { "1. Sześć", "2. Osiem", "3. Dziesięć" },
- { "1. Wenus", "2. Mars", "3. Merkury" },
- { "1. Siedem", "2. Osiem", "3. Dziewięć" },
- { "1. Warszawa", "2. Kraków", "3. Gdańsk" },
- { "1. Atlantycki", "2. Spokojny", "3. Indyjski" }
- };
- int[] correctAnswers = { 2, 3, 2, 1, 2 };
- int score = 0;
- for (int i = 0; i < questions.Length; i++)
- {
- Console.WriteLine($"\nPytanie {i + 1}: {questions[i]}");
- for (int j = 0; j < 3; j++)
- {
- Console.WriteLine(answers[i, j]);
- }
- Console.Write("Twoja odpowiedź (wpisz numer): ");
- int userAnswer;
- while (!int.TryParse(Console.ReadLine(), out userAnswer) ||
- userAnswer < 1 || userAnswer > 3)
- {
- Console.WriteLine("Podaj poprawny numer odpowiedzi (1, 2 lub 3): ");
- }
- if (userAnswer == correctAnswers[i])
- {
- Console.WriteLine("Brawo! To poprawna odpowiedź.");
- score++;
- }
- else
- {
- Console.WriteLine("Niestety, to nie jest poprawna odpowiedź.");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement