this is my first time using Java.... self Study only.. and i have a problem in looping can any one correct me... or give me sample code...
Scanner user = new Scanner(System.in);
int loopVal;
int end_value = 11;
int total;
int num = 10;
for (loopVal = 1; loopVal < end_value; loopVal++){
total = loopVal * num;
System.out.println(+loopVal +"i want to insert a number using a string that can times to my loopVal "+" Times "+" "+" = " +total);
}
}
}
Thanks