I am tryuibg to compile the following using Netbeans.


public class Example1 {
public int sumOfDigits(int n)
{

int sum = 0;
n = Math.abs(n);
while...