ABC Programing

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

using System;

public class Program


{
//Funcio Principal
public static void Main()
{
string abc = "abcdefghijklmnopqrstuvwxyz";
string lletra = "";
int vida = 3;
int torn = vida;
bool win = false;

//Declarar Matrius
string[] abecedari = new string[26]
{"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u
","v","w","x","y","z"};

//...
while(win == false && vida > 0)
{
Console.WriteLine("Introdueix les lletres del abecedari: ");
for(int i=0; i < abecedari.Length; i++)
{
lletra = Console.ReadLine ();
if(lletra == abecedari[i])
{
Console.WriteLine("Continua");
}
else
{
Console.WriteLine("Torna a comen�ar!");
vida--;
break;
}
if(i == abecedari.Length - 1)
{
win = true;
}
}
}
}
}

You might also like