返回列表 發帖

APCS 觀念題 10510 - 23

請問下列程式,執行完後輸出為何?
  1. int i=2, x=3;
  2. int N=65536;
  3. while (i <= N)
  4. {
  5.     i = i * i * i;
  6.     x = x + 1;
  7. }
  8. printf ("%d %d \n", i, x);
複製代碼
(A) 2417851639229258349412352 7
(B) 68921 43
(C) 65537 65539
(D) 134217728 6

本帖隱藏的內容需要回復才可以瀏覽

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表