Programming Examples

Java program to input 10 integers and find the sum of two digit as well as threedigit numbers separately


Write a program to input 10 integers and find the sum of two-digit as well as three-digit numbers separately.

Solution

import java.util.*;
class Sum10
{
	public static void main(String ar[])
	{
		int i,n,s2=0,s3=0;
		Scanner sc=new Scanner(System.in);
		System.out.print(“Enter 10 integers:”);
		for(i=1;i<=10;i++)
		{
		n=sc.nextInt();
		if(n>=10 && n<=99)
		s2+=n;
		if(n>=100 && n<=999)
		s3+=n;
		}
		System.out.println(“Sum of 2 digit numbers:”+s2);
		System.out.println(“Sum of 3 digit numbers:”+s3);
	}
}
Output

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad