Ex4_5.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //【例4.5】统计学生成绩,分数在80分以上的为A类,60分以上,80分以下的为B类,60分以下为C类。
  2. #include<iostream>
  3. using namespace std;
  4. int& level(int grade , int& typeA , int& typeB , int& typeC);   //函数返回值为变量的引用
  5. int main( ){
  6. int typeA=0,typeB=0,typeC=0 ;
  7. int student=9 ;
  8. int array[9]={90 , 75 , 83 , 66 , 58 , 40 , 80 , 85 , 71} ;
  9. for (int i=0 ; i<student ; i++)
  10. level(array[i], typeA, typeB, typeC)++ ;       //函数返回值本身后++
  11. cout<<"A类学生数:"<<typeA<<endl ;
  12. cout<<"B类学生数:"<<typeB<<endl ;
  13. cout<<"C类学生数:"<<typeC<<endl ;
  14. return 0;
  15. }
  16. int& level(int grade ,int& typeA ,int& typeB ,int& typeC){ 
  17. if(grade>=80) return typeA ; 
  18. else if(grade>=60) return typeB; 
  19. else return typeC;      //函数返回值为main( )中定义的3个变量之一,而不是临时变量
  20. }