Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » Java » Programs » Strings » Java program to display integers and sum using StringTokenizer
Suryateja Pericherla Categories: Strings. No Comments on Java program to display integers and sum using StringTokenizer
3.3
(8)

In this article we will learn to implement a Java program to display integers and their sum using StringTokenizer. A Java program is provided below which uses StringTokenizer class, reads a line of integers and then displays each integer and the sum of all integers.

 

Program is as follows:

import java.util.*;
class StringTokenDemo
{
	public static void main(String args[])
	{
			Scanner s = new Scanner(System.in);
			System.out.print("Enter a line of numbers: ");
			String input = s.next();
			StringTokenizer st = new StringTokenizer(input,"@");
			int sum = 0;
			while(st.hasMoreTokens())
			{
				int n = 0;
				n = Integer.parseInt(st.nextToken());
				System.out.println("Number is: "+n);
				sum += n;
			}
			System.out.println("Sum of the numbers is: "+sum);
	}
}

 

Input and output for the above program is as follows:

Enter a line of numbers: 2@3@1@4@5
Number is: 2
Number is: 3
Number is: 1
Number is: 4
Number is: 5
Sum of the numbers is: 15

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory