问题详情
下面程序的运行结果是#include<iostream.h>void main(){int i=1;while(i <=8)if(++i%3!=2) continue;else cout < < i;}
A、25
B、36
C、258
D、369