二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:计算机编程 if else if else 语句
计算机编程 if else if else 语句
#include <stdio.h> int main() { int x = 45; if( x > 95) { printf( "Student is brilliant\n"); } else if( x < 30) { printf( "Student is poor\n"); } else if( x < 95 && x > 30 ) { printf( "Student is average\n"); } }