Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import java.util.Scanner; public class AverageGrade { public static void main(String[] args) { double TestScore1; double TestScore2; doubleTestScore3; String name1; Scanner Keyboard = new Scanner(System.in); System.out.print(Please

import java.util.Scanner;

public class AverageGrade {

public static void main(String[] args) {

double TestScore1;

double TestScore2;

doubleTestScore3;

String name1;

Scanner Keyboard = new Scanner(System.in);

System.out.print("Please enter your name:");

name1 = Keyboard.nextLine();

System.out.println("Please enter test score 1");

TestScore1 = Keyboard.nextInt();

System.out.println("Please enter test score 2");

TestScore2 = Keyboard.nextInt();

System.out.println("Please enter test score 3");

TestScore3 = Keyboard.nextInt();

double average = ((TestScore1 + TestScore2 + TestScore3)/3);

out.println(name1); // This line is returning error along with the next one. Is what I need help with.

out.println("The average score of the three tests is: " + average);

The last two lines are returning errors that say "out cannot be resolved". The rest of the code are a bunch of if else statements that are not showing any errors. If needed I can provide the rest of the code but I do not think that is relevant to these issues.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2008 Comprehensive Concepts And Techniques

Authors: Gary B. Shelly, Corinne Hoisington

1st Edition

1423927168, 978-1423927167

More Books

Students also viewed these Databases questions

Question

LO3 Discuss the steps of a typical selection process.

Answered: 1 week ago