saya bisa dengan cara saya dan lebih simpel. hehehe ini programnya /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package buat_latihan_aja; import java.util.Scanner; /** * * @author user */ public class Buat_latihan_aja {
/** * @param args the command line arguments */ public static void main(String[] args) { Scanner input = new Scanner(System.in);
for (int i=10;i<20;i++){ int x = i+1; System.out.print(x+" "); i++;}
} }
ini hasil runnya run: 11 13 15 17 19 BUILD SUCCESSFUL (total time: 0 seconds)
saya bisa dengan cara saya dan lebih simpel. hehehe
ini programnya
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package buat_latihan_aja;
import java.util.Scanner;
/**
*
* @author user
*/
public class Buat_latihan_aja {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
for (int i=10;i<20;i++){
int x = i+1;
System.out.print(x+" ");
i++;}
}
}
ini hasil runnya
run:
11 13 15 17 19 BUILD SUCCESSFUL (total time: 0 seconds)