📅  最后修改于: 2022-03-11 14:52:06.513000             🧑  作者: Mango
public class TestingByte {
public static void main(String[] args) {
byte b = 190; //declare a byte variable and assign the value i.e 10
System.out.println(b); // print the value of byte variable b
}
}