Files
ASDV-Java/Test Project/src/main/java/com/mycompany/mavenproject1/ByteOverFlow.java

19 lines
418 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.mycompany.mavenproject1;
/**
*
* @author caleb
*/
public class ByteOverFlow {
public static void main(String[] args)
{
byte b = 127;
b++;
System.out.println(b);
}
}