2018年12月02日
前置・後置インクリメントとwhile文
使用しているプログラミング言語はJavaです。
前置と後置でインクリメントのタイミング少し違うので出力も変わります。
前置インクリメントとwhile文:
class DemoSample{
public static void main(String[] args) {
int i = 1;
while(i < 5) {
System.out.println(i++);
}
}
}
===== 実行結果 =====
1
2
3
4
====================
後置インクリメントとwhile文:
class DemoSample{
public static void main(String[] args) {
int i = 1;
while(i < 5) {
System.out.println(++i);
}
}
}
===== 実行結果 =====
2
3
4
5
====================
† 地球の末路!? †
前置と後置でインクリメントのタイミング少し違うので出力も変わります。
前置インクリメントとwhile文:
class DemoSample{
public static void main(String[] args) {
int i = 1;
while(i < 5) {
System.out.println(i++);
}
}
}
===== 実行結果 =====
1
2
3
4
====================
後置インクリメントとwhile文:
class DemoSample{
public static void main(String[] args) {
int i = 1;
while(i < 5) {
System.out.println(++i);
}
}
}
===== 実行結果 =====
2
3
4
5
====================
† 地球の末路!? †
【このカテゴリーの最新記事】
-
no image
-
no image
posted by 得ナビ8!おまんこっちんこうし at 00:00
| プログラミング(Java)