forked from gmendonca/uri-problem-solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1118.cpp
45 lines (39 loc) · 1.06 KB
/
1118.cpp
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
#include <iostream>
#include <stdio.h>
using namespace std;
int main(){
float x, y, z, n;
y = 0;
z = 0;
n = 0;
while(true){
cin >> x;
if(n == 1){
if(x == 2){
break;
}else if(x == 1){
n = 0;
continue;
}
else{
cout << "novo calculo (1-sim 2-nao)\n";
continue;
}
}else{
if(x < 0 || x > 10){
cout << "nota invalida\n";
}
else if(z == 0){
y = x;
z = 1;
}
else{
printf("media = %.2f\n", (x+y)/2.00);
z = 0;
n = 1;
}
}
if(n == 1) cout << "novo calculo (1-sim 2-nao)\n";
}
return 0;
}