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