I can not resolve the following exercise:
Display the results of a number table. You enter the value you want. The table should be run from 0 to 10, using the looping technique with logical testing at the end of the looping.
I can only use: DO and WHILE ..
So far my ECLIPSE code looks like this:
import java.io.IOException;
import java.util.Scanner;
public class Tabuada {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
int A;
Scanner tab = new Scanner(System.in);
System.out.println("Informar um número");
A = tab.nextInt();
}
}