通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
阅读程序,写出程序运行结果。
#include <stdio.h> void main( void ) { int i=25; do if( !(i%5) ) printf("%3d",i); while(--i>15); }