📄 add.cpp
字号:
#include<iostream>
const int Arsize=6;
int main()
{
using namespace std;
float naaq[Arsize];
cout<<"Enter the NAAQS(New Age Awareness Quotients)"
<<"of\nyour neighbors.Program terminates"
<<"when you make\n"<<Arsize<<"entries"
<<"or enter a negative value.\n";
int i=0;
float temp;
cout<<"First value:";
cin>>temp;
while(i<Arsize&&temp>=0)
{
naaq[i]=temp;
++i;
if(i<Arsize)
{
cout<<"Next value:";
cin>>temp;
}
}
if(i==0)
cout<<"No data--bye\n";
else
{
cout<<"Enter your NAAQ:";
float you;
cin>>you;
int count=0;
for(int j=0;j<i;j++)
if(naaq[j]>you)
++count;
cout<<count;
cout<<"of your neighbors have greater awreness of\n"
<<"the New Age than you do.\n";
}
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -