-
public class HelloWorld{
public static void main(String[] args) {
int a=12;
int b=24;
int sum=a+b
System.out.println("两数之和为:"+sum);
}
}查看全部 -
public class HelloWorld{
public static void main(String[] args) {
double heightAvg1=176.2;
int heightAvg2=(int)heightAvg1;
System.out.println(heightAvg1);
System.out.println(heightAvg2);
}
}
int 把double 取整后兼容
查看全部 -
blic class HelloWorld{
public static void main(String[] args) {
double avg1=78.5;
int rise=5;
double avg2=avg1+rise;
System.out.println("考试平均分:"+avg1);
System.out.println("调整后的平均分:"+avg2);
double 8字节 int 4字节查看全部 -
public class HelloWorld{
public static void main(String[] args) {
String city;
city=“长沙”;
System.out.println("我的家乡在:"+city);
}
}
结果=我的家乡在长沙
public class HelloWorld{
public static void main(String[] args) {
String city="长沙";
System.out.println("我的家乡在:"+city);
}
}查看全部 -
public class helloworld
psvm
string name="爱慕课";
char sex='男';注意char 用'
int number=18; 18旁边不要'或者"
boolean isok=true; true 旁边不要'或者"
sout(name);
sout(sex);
sout(number);
sout(isok);查看全部 -
string love="我爱慕课网"
sout(love)
string loveme="www.mok"
sout(loveme)
运行结果
我爱慕课网
www.mok查看全部 -
分号和小写英语括号
查看全部 -
1.语言优势
2.发展历史
3.不同版本
查看全部 -
原来是这样啊
查看全部 -
string apl查看全部
-
public class HelloWorld {
public static void main(String[] args) {
int num = 0;
int count = 0;
if (num >= 0 && num <= 999999999){
do{
count++;}
while ((num /= 10) >= 1);
System.out.println("它是个" + count + "位的数!");}
else
System.out.print("输入有误!");
}
}搜索
复制
查看全部 -
public class HelloWorld{
public static void main(String[] args){
int num = 10;
int count = 0;
if(num>=0&&num<=999999999){
for(;count<=9&&num>=1;count++){
num/=10;
}
System.out.println("它是个"+count+"位的数!");
}
else{
System.out.print("输入有误!");
}
}
}
搜索
复制
查看全部 -
注意哦:
1、 > 、 < 、 >= 、 <= 只支持左右两边操作数是数值类型
2、 == 、 != 两边的操作数既可以是数值类型,也可以是引用类型
搜索
复制
查看全部 -
目标类型大于源类型,如 double 类型长度为 8 字节, int 类型为 4 字节,因此 double 类型的变量里直接可以存放 int 类型的数据,但反过来就不可以了
查看全部 -
不能包含特殊字符,简单点字母数字,下划线美元符,不能数字开头。查看全部
举报