分支判断 90分以上为优秀 60以上为合格 60以下为不合格

/*
 * Desc: 90分以上为优秀 60以上为合格 60以下为不合格
 * Authors: hao.l
 * Date: 2016/10/17
 * Modify by:
 *
 */




#include 
#include 


using namespace std;


string getScope(int);


int main(){


   cout<=90){
        return "优秀";
    }else if(g>=60){
        return "合格";
    }else{
        return "不合格";
    }


}

你可能感兴趣的:(C++)