Click here to Skip to main content
15,888,401 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
There will be an array of elements. Add each digit of element and print the sum of each element.
Input:
32
11
Expected Output:
5
2
I am getting output as 5,2,0,0. How can i solve this?

What I have tried:

Java
import java.util.Scanner;
public class Main
{
	public static void main(String[] args) {
    	Scanner sc=new Scanner(System.in);
    	int n=sc.nextInt();
    	int a[]=new int[n];
    	for(int i=0;i<n;i++){
            a[i]="sc.nextInt();
        }
        int sum=0;
        for(int i=0;i<n;i++){
            for (int j=0;j<n;j++){
                while(a[j]>0){
    	            int d=a[j]%10;
    	            sum=sum+d;
    	            a[j]=a[j]/10;
    	        }
                System.out.println(sum);
                sum=0;
    	    }
    	}
    }
}
Posted
Updated 1-Oct-22 0:09am
v2

You have an extra for loop at:
Java
for(int i=0;i<n;i++){
    for (int j=0;j<n;j++){

Remove the first one and it should work correctly.
 
Share this answer
 
Comments
CPallini 1-Oct-22 5:44am    
5.
Richard MacCutchan 1-Oct-22 6:28am    
Thanks, an easy one to miss for a newbie.
Quote:
How do i...remove the last two zero

Obviously, you do not understand the logic of your code. Use the debugger to see what is going on.

Your code do not behave the way you expect, or you don't understand why !

There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.

Debugger - Wikipedia, the free encyclopedia[^]

Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[^]
Basic Debugging with Visual Studio 2010 - YouTube[^]

jdb - The Java Debugger[^]
https://www.jetbrains.com/idea/help/debugging-your-first-java-application.html[^]

The debugger is here to only show you what your code is doing and your task is to compare with what it should do.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900