Preview:
import java.util.Scanner ;
public class Task5 {
	
	public static void main (String[] args) {
		Scanner input = new Scanner(System.in);
		System.out.print("Enter table #: ");
		int table = input.nextInt();
		System.out.print("Enter start #: ");
		int start = input.nextInt();
		System.out.print("Enter end #: ");
		int end = input.nextInt();
		tables(table,start,end);
	}
	
	public static void tables(int Table,int Start,int End){
		for(int i=Start; i<=End; i++){
			System.out.printf("%d * %d = %d%n",Table,i,i*Table);
		}
	}
	
	
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter