如果for迴圈沒有{} ,那麼該for迴圈預設對第一條語句進行迴圈,以;結尾就結束了。這個語法同樣適用於if ,while迴圈。
例如下面這個例子:
public class fordemo ;
int s=0;
for (int i = 0; i < myintarray.length; i++)
if (i % 2 == 1)
s+=myintarray[i];
system.out.println(s);
}}
其中
for (int i = 0; i < myintarray.length; i++)
if (i % 2 == 1)
s+=myintarray[i];
system.out.println(s);
等價於
for (int i = 0; i < myintarray.length; i++)
system.out.println(s);
為什麼沒有進入迴圈?(乙個pipe例子)
一 有錯誤的程式 include include include include void writer const char message,int count,file stream void reader file stream printf enter reader n while 0 fe...
沒有物件?new乙個!
我們都知道,使用new後可返回乙個物件,通常用於例項化乙個 類 用法 function student name,age student.prototype.sayname function const person new student 小明 person.sayname i am 小明首先我們...
乙個沒有 0 的計數
一直以來,我都對 0 這個數字感到習以為常,0 不就是代表沒有嘛,但當我遇到了下面這個程式設計題目時,我對 0 的意義有了新的認識,0 的引進,絕對稱得上是計數方式的一次偉大的前進。給定乙個正整數,返回它在 excel 表中相對應的列名稱。例如,1 a 2 b 3 c 26 z 27 aa 28 a...