2.定义如下变量,然后为每种不同类型的变量赋予合法的字面值 byte b; short s; int i; long l; float f; double d; char c; String str;
时间: 2023-07-30 12:04:49 浏览: 82
为每种不同类型的变量赋予合法的字面值如下:
byte b = 10;
short s = 20;
int i = 30;
long l = 40L;
float f = 3.14f;
double d = 2.71828;
char c = 'A';
String str = "Hello, World!";
阅读全文