• 2021-04-14
    以下是功能等价的两个程序段
    程序段一:
    if(ave<0)
    printf("数据错误!
    ");
    else if(ave>=90)
    printf("优等生!
    ");
    else
    printf("加油!
    ");


    程序段二:
    if(ave<0)
    printf("数据错误!
    ");
    else
    if(ave>=90)
    printf("优等生!
    ");
    else
    printf("加油!
    ");