Syntaq :
/**
*
* @author mwpripanggalih
*/
public class
Bilangan3Sampai30TnpaKelipatan5Dowhile {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int i=3;
do{
if (i%5!=0)
System.out.println(i);
i+=3;
}while (i<=30);
}
}
EmoticonEmoticon