7ix.cpp
来自「《C/C++程序设计导论(第二版)》一书的程序源文件」· C++ 代码 · 共 19 行
CPP
19 行
// classify.cpp Output classifications for rat features
// ASSUMPTION: 25 lines of input, 4 measurements per line;
// consisting of age, weight, feedings, and activity
#include <iostream.h>
const int NUMRATS = 25;
extern char Classify (float age, float wt, int feedings, float activity);
void main ()
{ float age, weight, activity;
int feedings, count;
char group;
for (count=0; count<NUMRATS; count++)
{ cin >> age >> weight >> feedings >> activity;
group = Classify (age, weight, feedings, activity);
cout << "rat " << count << " is group " << group << endl;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?