Search:

Type: Posts; User: praspras

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,094

    Re: Error in block Scope ecample

    I removed it but still it is showing me that error.
  2. Replies
    6
    Views
    1,094

    Re: Error in block Scope ecample

    Hello, sorry for my posting mistakes..!
    // Demonstrate block scope.
    class Scope {
    public static void main(String args[]) {
    int x; // known to all code within main
    x = 10;
    if(x == 10) { // start...
  3. Replies
    6
    Views
    1,094

    Error in block Scope ecample

    Hi all,
    I am a beginner in programming and learning java using texteditor. I am getting an error in a program. Please tell me what's wrong in the below code.


    // Demonstrate block scope....
Results 1 to 3 of 3