0% found this document useful (0 votes)
106 views3 pages

Variable and Data Types

The document contains 4 coding exercises with solutions in Java: 1) A Hello World program 2) A program to print an asterisk pattern 3) A program declaring and assigning variables of different types 4) A program prompting user input and printing a greeting

Uploaded by

MahmoudMohammad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
106 views3 pages

Variable and Data Types

The document contains 4 coding exercises with solutions in Java: 1) A Hello World program 2) A program to print an asterisk pattern 3) A program declaring and assigning variables of different types 4) A program prompting user input and printing a greeting

Uploaded by

MahmoudMohammad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Exercise 1: Write a Java program to display Hello World on the screen.

Solution:

public class HelloWorld


{
public static void main(String[] args)
{

System.out.println("Hello World.");

Exercise 2:Write a Java program to display the asterisk pattern as


shown below:
*****

*****

*****

*****

*****

Solution:

public class JavaExercises


{
public static void main(String[] args)
{
printAsterisk();
}

static void printAsterisk(){

System.out.println("*****");
System.out.println("*****");
System.out.println("*****");
System.out.println("*****");
System.out.println("*****");

Exercise 3: Write a Java program to declare two integer variables, one


float variable, and one string variable and assign 10, 12.5, and "Java
programming" to them respectively. Then display their values on the
screen.
Solution:

public class JavaExercises


{
public static void main(String[] args)
{
accessVariables();
}

static void accessVariables(){

int x;
float y;
String s;
x = 10;
y = 12.5f;
s = "Java programming";
System.out.println(x);
System.out.println(y);
System.out.println(s);

}
Exercise 4: Write a Java program by using BufferedReader class to
prompt a user to input his/her name and then the output will be shown
as an example below:
Hello Dara!

Solution:

import java.io.*;
public class JavaExercises
{
public static void main(String[] args)
{
printName();
}

static void printName(){


String pname=null;

try{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter your name:");
pname=br.readLine();
}catch(IOException e){}

System.out.println("Hello "+pname);

You might also like