EE364-lab/lab-03/src/ParseInts.java
HeshamTB d1f38a542b
lab-03:
- Add try/catch preventing NumberFormatEx during runtime. No handling yet.
2020-10-02 16:28:26 +03:00

24 lines
679 B
Java

import java.io.PrintStream;
import java.util.Scanner;
public class ParseInts {
public static void main(String args[]){
Scanner in = new Scanner(System.in);
PrintStream out = System.out;
out.println("Enter a line of text: ");
String line;
Scanner scanLine = new Scanner(in.nextLine());
int sum = 0;
while (scanLine.hasNext()){
try {
int val = Integer.parseInt(scanLine.next());
sum += val;
}
catch (NumberFormatException e){
//pass
}
}
out.println("The sum of the integers on this line is " + sum);
}
}