问题 填空题 以下程序运行时,输出到屏幕的结果是 ___(6)___。#include int main(){ int a=6,b=15,t=a; while (t%b! =0) t+=a;printf("%d",t);return 0;} 答案 参考答案:30