-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathand.cpp
More file actions
44 lines (42 loc) · 805 Bytes
/
Copy pathand.cpp
File metadata and controls
44 lines (42 loc) · 805 Bytes
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
#include <iostream>
const int ArSize = 6;
int main(int argc, char *argv[])
{
using namespace std;
float naaq[ArSize];
std::cout << "enter the NAAQs:" << std::endl;
int i = 0;
float temp;
cout << "First value: ";
cin >> temp;
while( i < ArSize && temp >= 0)
{
naaq[i] = temp;
++i;
if(i < ArSize)
{
std::cout << "next value";
cin >> temp;
}
}
if(i == 0)
{
cout << "No data"<<endl;
}
else
{
cout << "Enter your NAAQ:";
float you;
cin>>you;
int count = 0;
for(int j = 0; j<i; j++)
{
if(naaq[i] > you)
{
++ count;
}
cout << count;
}
}
return 0;
}