DoWhileDemo

Struct DoWhileDemo01

package com.chen.struct; public class DoWhileDemo01 { public static void main(String[] args) { int i = 0; int sum = 0; do { sum = sum + i; i++; }while ......
DoWhileDemo Struct 01

Struct DoWhileDemo02

package com.chen.struct; public class DoWhileDemo02 { public static void main(String[] args) { int a = 0 ; while (a<0){ System.out.println(a); a++; } ......
DoWhileDemo Struct 02
共2篇  :1/1页 首页上一页1下一页尾页