摘要:
1.使用for循环计算1-100的和,除了以3结尾的那些数 public class h331 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int 阅读全文
摘要:
1.分别使用for循环,while循环,do循环求1到100之间所有能被3整除的整数的和。(知识点:循环语句) public class h332 { /** * @param args */ public static void main(String[] args) { // TODO Auto 阅读全文