Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package zajęcia2;
- import java.util.Scanner;
- public class Zad4 {
- public static void main(String[] args) {
- Scanner wej = new Scanner(System.in);
- int suma = 0;
- int wejs;
- while(true){
- if(wej.hasNextInt()){
- wejs = wej.nextInt();
- if(wejs==0){
- break;
- }
- suma+=wejs;
- continue;
- }
- else{ System.out.println("To musi być liczba!"); wej.next(); continue;}
- }
- System.out.println("Suma podanych liczb:" +suma);
- wej.close();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment