Sign In
Not register? Register Now!
Pages:
2 pages/β‰ˆ550 words
Sources:
Check Instructions
Style:
APA
Subject:
IT & Computer Science
Type:
Coursework
Language:
English (U.S.)
Document:
MS Word
Date:
Total cost:
$ 12.96
Topic:

Hello World from the Portuguese Application Java Program

Coursework Instructions:

Complete the assignment according to the directions in the "Hello World From the Portuguese Application" resource and submit it as directed.
This assignment uses a rubric. Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion.
With explanation with resources and APA
Make sure its Saved on the document so I transfer code to "notepad"

Coursework Sample Content Preview:

Java Program
Student’s Name:
Institution:
Professor:
Unit Name & Number:
Date of Submission:
Java Program
PART 1
package hellome;
import java.util.Scanner;
//This program asks for the user's name and age, and says hello to the user.
/* Standard input and output is used.
* This program will be further modified during this assignment.
*/
public class HelloMe {
/**
* 1st October 2021
**/
//main method is entry point for all java programs.
public static void main(String[] args) {
String name;
int age;
Scanner scanIn = new Scanner(System.in);
System.out.println("What is your name? ");
name = scanIn.nextLine();
System.out.println("Hello " + name);
System.out.println("How old are you? ");
age = scanIn.nextInt();
System.out.println("Next year you will be " + Integer.toString(age+1) + " years old!");
scanIn.close();
}
}
PART 2
package lovetest;
import java.util.Scanner;
//This program asks for the user's name and age, and says hello to the user.
/*Standard input and output is used.
* This program will be further modified during this assignment*/
public class LoveTest {
public static void main(String[] args) {
String name;
Scanner scanIn = new Scanner(System.in);
System.out.println("What is your name? ");
name = scanIn.n...
Updated on
Get the Whole Paper!
Not exactly what you need?
Do you need a custom essay? Order right now:

πŸ‘€ Other Visitors are Viewing These APA Coursework Samples:

HIRE A WRITER FROM $11.95 / PAGE
ORDER WITH 15% DISCOUNT!