Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. class Sample3
  4. {
  5. public static void main(String[] args) throws IOException
  6. {
  7. BufferedReader br =
  8. new BufferedReader(new InputStreamReader(System.in));
  9.  
  10. System.out.println("年齢を入力してください>");
  11. String str = br.readLine();
  12. System.out.println("私は"+str+"です。");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement