You are viewing a single comment's thread. Return to all comments →
Working Code
import java.util.; import java.io.;
class Solution{ public static void main(String []argh){ Scanner in = new Scanner(System.in); int t=in.nextInt(); int common=0; for(int i=0;i
for(int j=1;j<=n;j++){ System.out.print(common+" "); common=common+(int)(b * (Math.pow(2, j))); } common=0; System.out.println(""); } in.close(); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Loops II
You are viewing a single comment's thread. Return to all comments →
Working Code
import java.util.; import java.io.;
class Solution{ public static void main(String []argh){ Scanner in = new Scanner(System.in); int t=in.nextInt(); int common=0; for(int i=0;i
}