📄 7ix.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -