add.cpp

来自「在vc++语言环境下」· C++ 代码 · 共 41 行

CPP
41
字号
#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 + =
减小字号Ctrl + -
显示快捷键?