-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
51 lines (48 loc) · 1.1 KB
/
Program.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
42
43
44
45
46
47
48
49
50
51
using System;
namespace Trabalho_do_GB
{
class Program
{
static void Main(string[] args)
{
int a;
string b;
double n1 = 0;
double n2 = 0;
do{
Console.WriteLine("[ 1 ] Informar dados");
Console.WriteLine("[ 2 ] Calcular média");
Console.WriteLine("[ 3 ] Verificar aprovação");
Console.WriteLine("[ 0 ] Sair");
Console.WriteLine("-------------------------------------");
Console.Write("Digite uma opção: ");
a = Int32.Parse(Console.ReadLine());
if (a == 1){
Console.WriteLine("Nome: ");
b = Console.ReadLine();
Console.WriteLine("Nota 1: ");
n1 = double.Parse(Console.ReadLine());
Console.WriteLine("Nota 2: ");
n2 = float.Parse(Console.ReadLine());
} if (a ==2)
{
double ga = n1 * 0.33;
double gb = n2 * 0.67;
double c = ga + gb;
Console.Write("Nota: " + c);
} if (a == 3){
double ga = n1 * 0.33;
double gb = n2 * 0.67;
double c = ga + gb;
if (c >= 6 )
Console.Write("Aprovado");
if (c< 6)
Console.Write("Nãp aprovado");
} if (a ==0){
return;
}
}
while (a != 0 || a > 3);
}
}
}