This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body> | |
| <div class="container"> | |
| <div class="jumbotron"> | |
| <h1>Alberto Fujimori</h1> | |
| <h2>A controversial figure in a conflicted time.</h2> | |
| <div class="thumbnail"> | |
| <img id="profilePhoto" src="http://www.limaeasy.com/images/igallery/resized/3901-4000/fujimori_1993-3969-700-600-80-c-rd-239-238-171.jpg"> | |
| <div class="caption"> | |
| Alberto Fujimori was elected in 1990 and ruled until 2000. He is a polarizing figure, criticized for his methods in dealing with terrorists along with corruption charges in later years. | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Arrays; | |
| import java.util.Scanner; | |
| public class Anagram { | |
| public static void main(String[] args) { | |
| Scanner scanner = new Scanner(System.in); | |
| System.out.print("Please enter the first String: "); |