Search:

Type: Posts; User: Hemambara

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    1,227

    Re: Problems with a code

    Variables should not be declared with spaces;

    float length,width,radius,3.14,height,volume of box,volume of cylinder;

    volume of box, instead you can give volume_of_box..


    There are certain...
  2. Re: problem with my code (FOR LOOPS) neeed help plZ

    Keep the statements under if condition in braces. Like below

    if((number>largest1)){
    largest2=largest1;
    largest1=number;
    }
  3. Replies
    2
    Views
    4,428

    Re: java.sql.SQLException: No data found

    Provide the full printStackTrace(), then we can help you out
  4. Replies
    3
    Views
    1,091

    Re: Variable error help

    Comment {} on line 11, then it would be like this

    public class ARG
    {
    public static void main(String[] args)
    {


    int[] A = new int[10000];
Results 1 to 4 of 4