以下程序的输出结果是( )。
#include<stdio.h> void main( ) { int i = 10; do{ i += i++; } while(i<30); printf("%d",i); }
Copyright ©