Search:

Type: Posts; User: chakana101

Search: Search took 0.08 seconds.

  1. Re: Questions about if statements and if-else statements

    So using something else as a similar example:




    if (score >= 90) grade = 'A';
    if (score >= 80) grade = ' B ';
    if (score >= 70 ) grade = 'C';
    if (score >= 60 ) grade = 'D';
    else grade =...
  2. Re: Questions about if statements and if-else statements

    The way my professor presented the problem in the practice exam, is without the brackets. Because they weren't shown, are they implied to be there? Would it still produce the same output without the...
  3. Questions about if statements and if-else statements

    I have an exam on monday on java programming and i'm still a bit confused about a certain question involving nested if statements, the question is:

    What is the output of the following code:
    ...
Results 1 to 3 of 3