填空题

#include<stdio.h> main() {int y; for(y=5;y>0;y--) {if(y%2==0)continue; printf("%d",y); } } 程序运行结果是:______

【参考答案】

531