高普考題庫
106 年 106年公務人員高等考試三級考試暨普通考試・計算機概要
28執行下列C程式後,產生的輸出為何?#include<stdio.h>int main() {int a = 50;int b = 1;while (a!= b) {if (a%b == 0) {printf("%d",b);}b++;}return 0;}