-
Notifications
You must be signed in to change notification settings - Fork 12
/
1118 - Várias Notas Com Validação.cs
48 lines (33 loc) · 1.08 KB
/
1118 - Várias Notas Com Validação.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
using System;
using System.Globalization;
//Developed by: @LucasMarcuzo
class URI1118 {
static void Main(string[] args) {
double m, n, t, calc=1;
do
{
do
{
m=double.Parse(Console.ReadLine(),CultureInfo.InvariantCulture);
if(m < 0.0f || m > 10.0f)
{
Console.WriteLine("nota invalida");
}
} while (m < 0.0f || m > 10.0f);
do
{
n=double.Parse(Console.ReadLine(),CultureInfo.InvariantCulture);
if(n < 0.0f || n > 10.0f)
{
Console.WriteLine("nota invalida");
}
} while (n < 0.0f || n > 10.0f);
Console.WriteLine("media = {0:0.00}",t=(m+n)/2);
do
{
Console.WriteLine("novo calculo (1-sim 2-nao)");
calc=int.Parse(Console.ReadLine());
} while (calc != 1 && calc != 2);
} while (calc == 1);
}
}