Java program to convert Celsius to Fahrenheit

Quick links

Write a Java program to input Celsius from user and convert temperature from Celsius to Fahrenheit. How to convert Celsius to Fahrenheit in Java.

In this on going Java programming examples, we will continue to enhance basic Java programming skills. In this post we will learn to convert given temperature from Celsius to Fahrenheit in Java.

Read more

Java program to find perimeter and area of rectangle

Write a Java program to input length and width and find perimeter and area of rectangle. Logic to find perimeter and area of a rectangle, whose length and width are given. In this example we will learn to write basic logical program in Java. We will learn to find perimeter and area of rectangle.

Example
Input

Length of rectangle = 30
Width of rectangle  = 20

Output

Perimeter of rectangle is 100.0 units.
Area of rectangle is 600.0 sq. units.

Read more

Java program to perform all arithmetic operations

Write a Java program to perform all arithmetic operation. How to perform arithmetic operations in Java programming. In this example we will learn to input two integer from user and perform all arithmetic operations.

Example
Input

First number: 15
Second number: 4

Output

Sum : 19
Difference : 11
Product : 60
Quotient : 3
Modulus : 3

Read more

Java program to add two numbers and print result

Write a Java program to input two numbers add two numbers. In this example we will learn to use arithmetic operator to find sum of two numbers. We will learn to input two number from user and find sum of two numbers in Java.

Example
Input

First number: 10
Second number: 5

Output

Sum of 10 and 5 is : 15

Read more

Basic input using Scanner class in Java

Write a java program to perform basic input using Scanner class. In this article I will explain how to input all basic data types using Scanner class in Java. We will learn how to use java.util.Scanner class to input data from user.

Example
Input

Enter charater value: c
Enter integer value: 10

Output

You entered charater : c
You entered integer: 10

Read more