Answer to Question #271482 in Java | JSP | JSF for tshego

Question #271482

Write a Java application and use a Two dimensional array to store five Dutch, French and Italian translated words. Use a single array to store the English words.  


1
Expert's answer
2021-11-26T07:08:16-0500
public class Main
{
	public static void main(String[] args) {
	    String arr[]={"vulcano","influenze","Fiasco","Scenary","lonely"};
	    String array[]={"volcano","influenza","Figurative","Scenario","solo"};
		System.out.print("Foreign words\n");
		for(int i=1;i<5;i++){
		    System.out.print(arr[i]+" ");
		}
		System.out.print("\nTranslated English words\n");
		for(int i=1;i<5;i++){
		    System.out.print(array[i]+" ");
		}
	}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS