Syntaq :
/**
 *
 * @author
mwpripanggalih
 */
public class Bilangan10Sampai1While {
    /**
     * @param args
the command line arguments
     */
    public static
void main(String[] args) {
        // TODO
code application logic here
        int i=10;
        while (i>=1)
        {
           
System.out.println(i);
            i--;
        }
    }
}
Screenshot :

EmoticonEmoticon