/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package scopetest; /** * * @author gorr */ public class ScopeTest { public static void main(String[] args) { int i = 10; int b = g(i); System.out.println(b + i); } public static int f(int i) { int n = 0; while (n * n <= i) { n++; } return n - 1; } public static int g(int a) { int b = 0; for (int n = 0; n < a; n++) { int i = f(n); b = b + i; } return b; } }