English, asked by rs1349100, 1 day ago

Amy Johnson lived in England________had not seen any other land except England. but________Vikram the first woman to fly alone the Australia. it was the longest journey ever taken by_________the people of the world could not believe_________ . but__________admired the courage and the earth enthusiasm that____________in talking of this unique adventure. that was in 1930 e the follow year__________another flight this time___________had a flight to Moscow.​

Answers

Answered by saisurajdey13
0

Answer:

Explanation:

import java.util.Scanner;  

public class TableExample  

{  

public static void main(String args[])    

{  

Scanner sc = new Scanner(System.in);  

System.out.print("Enter number: ");        

//reading a number whose table is to be print  

int num=sc.nextInt();  

//loop start execution form and execute until the condition i<=10 becomes false  

for(int i=1; i <= 10; i++)  

{  

//prints table of the entered number      

System.out.println(num+" * "+i+" = "+num*i);  

}  

}  

}  

Similar questions