c试题-以下程序的运行结果是

#include <stdio.h>

int main () {
	int m = 5;
	if ( m++ > 5) printf("%d/n", m);
	else printf("%d", --m);
}

网友评论0