This is a Java Program to Calculate Sum of Two Byte Values Using Type Casting. Type casting in Java is to cast one type, a class or interface, into another type i.e. another class or interface.
Enter any two byte values as input. After that we first convert these two bytes into integer using type casting and then we add that values and get the desired output.
Here is the source code of the Java Program to Calculate Sum of Two Byte Values Using Type Casting. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
import java.util.Scanner;
public class Byte_Sum
{
public static void main(String[] args)
{
byte a, b;
int x, y, z;
Scanner s = new Scanner(System.in);
System.out.print("Enter first byte value:");
a = s.nextByte();
x = a;
System.out.print("Enter second byte value:");
b = s.nextByte();
y = b;
z = x + y;
System.out.println("Result:"+z);
}
}
Output:
$ javac Byte_Sum.java $ java Byte_Sum Enter first byte value:124 Enter second byte value:115 Result:239
Sanfoundry Global Education & Learning Series – 1000 Java Programs.
advertisement
Here’s the list of Best Books in Java Programming, Data Structures and Algorithms.
Related Posts:
- Check Java Books
- Practice BCA MCQs
- Check Programming Books
- Practice Information Technology MCQs
- Apply for Computer Science Internship