Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 981 Bytes

File metadata and controls

39 lines (32 loc) · 981 Bytes

Problema

18 - Escreve um programa que solicite ao utilizador uma frase. Se a respetiva string tiver mais de 20 caracteres, o programa deve mostrar no ecrã Too long to read. Se a string tiver entre 5 a 20 caracteres, deve mostrar no ecrã Ok, if you say so.. Se a string tiver menos de 5 caracteres, o programa deve mostrar no ecrã That's not very meaningful, is it?.

Soluções

Solução 1

// Variaveis
string text;
int vt = 20, m = 5;

// Solicitar ao utilizador uma string
Console.WriteLine(" Elabore uma frase: ");
text = Console.ReadLine();

// Verificar se tem mais de 20 caracteres
if (text.Length > vt)
{
    Console.WriteLine(" Too long to read ");
}
// Verificar se tem entre 5 a 20 caracteres
else if (text.Length >= m)
{
    Console.WriteLine(" Ok, if you say so.");
}
// Verificar se tem menos de 5 caracteres
else
{
    Console.WriteLine(" That's not very meaningful, is it? ");
}

Por Sara Gama.