using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Death_Note
{
class Program
{
static void Main(string[] args)
{
//Definindo as variáveis:
string vÃtima,tipo_morte;
int morte;
//Escolhendo a vÃtima:
Console.Write("Diga o nome da pessoa que você deseja que morra...: ");
vÃtima = Console.ReadLine();
//Escolhendo as opções de morte:
Console.WriteLine("Diga como você quer que a vÃtima morra: 1 = Morte Padrão, 2 = Morte personalizada...:");
morte = int.Parse(Console.ReadLine());
//Opções de mor
We’ve updated our privacy policy so that we are compliant with changing global privacy regulations and to provide you with insight into the limited ways in which we use your data.
You can read the details below. By accepting, you agree to the updated privacy policy.