-
Notifications
You must be signed in to change notification settings - Fork 127
/
OMaior.cs
41 lines (30 loc) · 940 Bytes
/
OMaior.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// O Maior
/*
Desenvolva um programa capaz de ler três valores e apresentar o maior deles e
adicionar a mensagem “ eh o maior”. Use a seguinte forma como base:
vide arquivo o-maior.png em assets
Obs.: a fórmula apenas calcula o maior entre os dois primeiros (a e b). Um
segundo passo, portanto é necessário para chegar no resultado esperado.
• Entrada
O arquivo de entrada contém três valores inteiros.
• Saída
Imprima o maior dos três valores seguido pela mensagem " eh o maior".
*/
using System;
class Program {
static void Main(string[] args) {
string[] vet = Console.ReadLine().Split(' ');
int a = Convert.ToInt32(vet[0]);
int b = Convert.ToInt32(vet[1]);
int c = Convert.ToInt32(vet[2]);
int MAIOR = 0;
if (a >= b && a >= c) {
MAIOR = a;
} else if(b >= a && b >= c) {
MAIOR = b;
} else {
MAIOR = c;
}
Console.WriteLine($"{MAIOR} eh o maior");
}
}