在eclipse中,编写一个java程序,将8种基
发布网友
发布时间:2022-05-06 22:24
我来回答
共1个回答
热心网友
时间:2023-09-26 17:33
楼主想问什么。。。。。。。。。。。下面是将java的8种基本类型输出了
public class yourhomework {
public static void main(String[] args){
byte by = 100;
short s = 1000;
int i = 100000;
long l = 100000L;
float f = 234.5f;
double d = 123.4;
boolean bool = true;
char c = 'A';
System.out.println(by);
System.out.println(s);
System.out.println(i);
System.out.println(l);
System.out.println(f);
System.out.println(d);
System.out.println(bool);
System.out.println(c);
}
}