Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6900913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:36:27+00:00 2026-05-27T07:36:27+00:00

I am writing a program for a class that is very simple. All it

  • 0

I am writing a program for a class that is very simple. All it requires of me is to print a grade sheet, and be able to input 3 pieces of information (here represented by Strings studentName, idNumber, and assignmentTitle). The grade sheet has to be stored in a single string. Ok so this to me appears as though it should work but for whatever reason it outputs null values where the inputted studentName, idNumber, and assignmentTitle should appear. Very simple problem I’m sure, any ideas? Here is my code.

import java.util.Scanner;

class GradingForm
{
static String studentName;
static String idNumber;
static String assignmentTitle;
    static String gradeSheet = "********************************* \n\n" + 
                                assignmentTitle + "\n\n" +
                                studentName + " " + idNumber + "\n\n" +
                                "Grade Summary:\n\n" +
                                "Program Correctness:        Quality of Style:\n" +
                                "Late Deduction:              Overall Score:\n" +
                                "Comments:";
public static void gradeFormValues()
{
    Scanner inData;
    inData = new Scanner(System.in);
    System.out.println("Enter student's name: ");
    studentName = inData.nextLine();
    System.out.println("Enter student ID number: ");
    idNumber = inData.nextLine();
    System.out.println("Enter Assignment title: ");
    assignmentTitle = inData.nextLine();
}
public static void printGradeSheet()
{
    System.out.println(gradeSheet);
}

public static void main(String[] args)
{
            gradeFormValues();
            printGradeSheet();
}
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:36:28+00:00Added an answer on May 27, 2026 at 7:36 am

    Your problem is that you use those variables before assigning values to them:

    static String gradeSheet = "********************************* \n\n" + 
                                    assignmentTitle + "\n\n" +
                                    studentName + " " + idNumber + "\n\n" +
                                    "Grade Summary:\n\n" +
                                    "Program Correctness:        Quality of Style:\n" +
                                    "Late Deduction:              Overall Score:\n" +
                                    "Comments:";
    

    You need to build the string only after you assign values to them for example:

    public static void printGradeSheet()
    {
        gradeSheet = "********************************* \n\n" + 
           assignmentTitle + "\n\n" +
           studentName + " " + idNumber + "\n\n" +
           "Grade Summary:\n\n" +
           "Program Correctness:        Quality of Style:\n" +
           "Late Deduction:              Overall Score:\n" +
           "Comments:";
        System.out.println(gradeSheet);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a C++ program for class that requires a set of N child
I'm writing a simple program. There is only one class in it. There is
Im writing a program that should read input via stdin, so I have the
Writing a simple program that will find exact duplicate files on my computer, but
I am writing a program that uses the quickfix library. The documentation is very
Suppose we are writing a class (let's call it Class) in an iPhone program.
I'm writing a program that sends an email out at a client's specific local
If you are writing a program that is executable from the command line, you
I'm writing a program that uses SetWindowRgn to make transparent holes in a window
I decided to implement a very simple program recursively, to see how well Java

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.