Write a Java program to input days from user and find total years, weeks and days. How to convert days to years weeks and days in Java programming.
Java program to convert Fahrenheit to Celsius
Write a Java program to input temperature in Fahrenheit from user and convert to Celsius. How to convert Fahrenheit to Celsius in Java programming.
In the previous post, I explained to convert temperature from Celsius to Fahrenheit. In this post, we learn how to convert Fahrenheit to Celsius in Java.
Java program to convert Celsius to Fahrenheit
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.
Unions in C programming language, need and use
Unions in C are user defined data type similar to structures. Union allows to define multiple members of different type at single location. In this article I will explain what is union, need of union, how to declare, define and access unions in C programming language.
We use unions to define a new data type, similar to structures in C. Its definition, use and access are almost similar to structures. If I say its similar to structure, then you may think why in the world do we need it then. Hence, let us first explore the real world need of a union type.
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.
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.
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.
Input
First number: 15 Second number: 4
Output
Sum : 19 Difference : 11 Product : 60 Quotient : 3 Modulus : 3
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.
Input
First number: 10 Second number: 5
Output
Sum of 10 and 5 is : 15
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.
Input
Enter charater value: c Enter integer value: 10
Output
You entered charater : c You entered integer: 10