Java! .
Napisz program,który wyswietla liczby parzystee z zakresu dopoki ich suma nie przekroczy 50.
class klasa{
public static void main(String args[]){
int a=0;
while(a<=50)
{
System.out.println(a);
a+=2;
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
class klasa{
public static void main(String args[]){
int a=0;
while(a<=50)
{
System.out.println(a);
a+=2;
}
}