[code=c]
#include <stdio.h>

#define MAX(a,b) ((a)>(b)?(a):(b))

int main( )
{
    int a, b, c, d, i; 
    scanf("%d%d%d%d", &a, &b, &c, &d);
    printf("\nThe max is %d\n", MAX(MAX(a,b), MAX(c,d)));
}
[/code]

这个The max中的max为什么也要红色?


建议使用vim的TOhtml功能输出语法高亮的html代码
要比这个美观多了