Search:

Type: Posts; User: traewall11

Search: Search took 0.41 seconds.

  1. Replies
    11
    Views
    3,089

    Re: Need some simple Java Help

    I finally got it thank you it was just a computation error.

    Any idea, on where to start for question 2?
  2. Replies
    11
    Views
    3,089

    Re: Need some simple Java Help

    // Description: Determines positive, negative, sum, and average of integers. Ends when 0 input.


    import java.util.Scanner;

    public class Compute {
    public static void main (String[] args) {...
  3. Replies
    11
    Views
    3,089

    Re: Need some simple Java Help

    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
    Syntax error on token "if", ( expected after this token
    Syntax error on tokens, Expression expected instead
    Syntax...
  4. Replies
    11
    Views
    3,089

    Re: Need some simple Java Help

    // Description: Determines positive, negative, sum, and average of integers. Ends when 0 input.


    import java.util.Scanner;

    public class Compute {
    public static void main (String[] args) {...
  5. Replies
    11
    Views
    3,089

    Re: Need some simple Java Help

    #include <stdio.h>
    #include <conio.h>

    void main()
    {
    int number;
    clrscr();

    printf("Enter a number\n");
    scanf ("%d", &number);
  6. Replies
    11
    Views
    3,089

    Need some simple Java Help

    I recieved a bonus assignment for my Java class and I was wondering if anyone could help, they are pretty simple im just a new coder. (if it matters i use JGRASP)

    First one is " Write a program...
Results 1 to 6 of 6