Alrighty!
I got that latest loop issue fixed...now I have got another problem to work out.

here is the revised code:
import java.util.Scanner; //scanner class import declaration
public class LargestValue
{
public void determineLargestValue()
{
//create Scanner to obtain input from command window
Scanner input = new Scanner(System.in);
int total;
int intCounter;
int number;//currently input number
int largest;//largest number found so far
//initialization
total=0;
intCounter=1;
largest=0;
number=0;
while (intCounter<10)//loop 10 times
{
System.out.print("Enter number: ");
number = input.nextInt();
total+= number;
intCounter ++;
if//if statement
(number>largest)
{
largest=number;
total += number;
intCounter++;
}//end if
}//end while
//termination phase
//display total
System.out.printf("The total is : %d\n", total);
System.out.printf("\nThe largest of all 10 integers is: %d\n", largest, number);
}//end method LargestValue
}//end class
class LargestValueTest
{
public void main(String args[])
{
LargestValue LargestValue2 = new LargestValue();//create object of LargestValue class to call method
LargestValue2.determineLargestValue();//find the largest integer in 10
}//end main
}//end class
class LargestValueTest
{
public static void main(String args[])
{
LargestValue LargestValue2 = new LargestValue();//create object of LargestValue class to call method
LargestValue2.determineLargestValue();//find the largest integer in 10
}//end main
}//end class
now the issue here is when I execute and test the class, the While loop only Iterates 5 times instead of 10.

I am about 95%+ percent finished with this program because it does what it was intended to do, it determines the largest value, only in 5 integers. Now it should be ready for submission once I get this latest(and hopefully final) logical bug taken care of.
So what is my program missing now? another If statement? while loop? I'm not sure how to fix it to loop 10 x instead of 5.