Can you please help me with this problem Statement in Java.
For this assignment, you will create a program that demonstrates the use of numbers, strings, and methods.
Numbers:
a) Create variables to store any 2 floating-point numbers.
b) Create variables to store any 2 integral numbers.
Strings:
a) Create String variables to store your first name and your last name. Calculate, store and print your full name
b) Create a String variable to store your nationality and print it to the console.
Methods:
a) Create a method that will add the numbers stored in the 2 floating-point variables above and display the result to the console.
b) Create a method that will multiply the numbers stored in the 2 integral variables above and display the result to the console.
Expectations
1.Your code should be properly named.
2. Your code should have proper documentation similar to the header below
3. A report on the work done.
Note: Full credit will not be given if expectations are not met.
Sample Header
/********************************************************************
* Given the length and width of a rectangle, this program computes
* and outputs the perimeter and area of the rectangle.
*
* Author: AJ Kim
* Date: August 22, 2017
* Assignment 1: Perimeter and Area of Rectangle
********************************************************************/