Admin[dElmARk] Forum Owner
Posts : 78 EC-Points : 6304 Thanked : 21 Join date : 15/10/2011 Age : 29 Location : Philippines
Hacker's Info Hacking Exp: (0/0) Hacker Type: White Hat Hacking Title:
| Subject: BufferedReader Syntax Fri Nov 18, 2011 4:02 pm | |
| BufferedReader Syntax. The program starts with the code import java.io.*; before the class name, but must be inside the method - Code:
-
1 import java.io.*; 2 class progName { 3 public static void main(String[] args){ 4 BufferedReader brVarName = new BufferedReader(new InputStreamReader(System.in))throws Exception; 5 } 6 }
Note: The numbers in the left side represents the line number. |
|
Admin[dElmARk] Forum Owner
Posts : 78 EC-Points : 6304 Thanked : 21 Join date : 15/10/2011 Age : 29 Location : Philippines
Hacker's Info Hacking Exp: (0/0) Hacker Type: White Hat Hacking Title:
| Subject: Re: BufferedReader Syntax Fri Nov 18, 2011 5:01 pm | |
| Declaring variable together with its data type using BufferedReader. (Continued..) Via Input Data - Code:
-
String stringVar = brVarName.readLine(); char charVar = brVarName.readLine(); int intVar = Integer.parseInt(brVarName.readLine()); Double doubleVar = Double.parseDouble(brVarName.readLine()); Fload floatVar = Float.parseFloat(brVarName.readLine());
User Defined Declaration - Code:
-
String stringVar = "Text Message, Sencence or Paragraph"; char charVar = 'a'; || Char charVar = '1'; int intVar = 12; Double doubleVar = 100.0; Fload floatVar = 50.0;
__________ Take a look at this: - Code:
-
import java.io.*; class Sample{ public static void main(String []args)throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Input Name: "); String name = br.readLine(); System.out.print("Input a letter or a number: "); char character = br.readLine(); System.out.print("Input your age: "); int age = Integer.parseInt(br.readLine()); System.out.print("Input a number with decimal: "); Double Doubledecimal = Double.parseDouble(br.readLine()); System.out.print("Input a number with decimal: "); Fload Floatdecimal = Float.parseFloat(br.readLine()); } }
|
|