发布于2020-11-19 20:30 阅读(1292) 评论(0) 点赞(5) 收藏(2)
两条路线(从小到大):
byte——short——int——long——float——double
char——int——long——float——double
a. 小转大
public class Test03 {
public static void main(String[] args) {
// 强制类型转换,小转大
int a = 10;
double b = a;
System.out.println(b); //输出: 10.0
}
}
b. 大转小(少用,可能造成精度丢失。)
public class Test04 {
public static void main(String[] args) {
// 大转小
int c = 5;
byte d = (byte)c;
System.out.println(d); //输出:5
}
}
注意:先写new Scanner,按alt + enter自动补齐,创建一个input类。
public class TestScanner {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String name = input.next();
System.out.println("您的名字是"+name);
int age = input.nextInt();
System.out.println("您的年龄是"+age);
}
}
// 输出名字和年龄
符号包括: +,-,*,/,%,= , +=, -=, *=, /=, %=
public class Test04 {
public static void main(String[] args) {
int a = 10;
double b = 10;
System.out.println(a+b); // 20.0
System.out.println(a-b); // 0.0
System.out.println(a/b); // 1.0
System.out.println(a%b); // 0.0
// 如何互换ab值?
int c = 1;
int d = 2;
System.out.println("初始值c是"+c);
System.out.println("初始值d是"+d);
int k = 0 ;
k = c;
c = d;
d = k;
System.out.println("新值c是"+ c);
System.out.println("新值d是"+ d);
}
}
与非或 ,对应, &!| 使用时&& ||成对出现
// 注意: 对字符串进行判断,anHao.equals("宝塔镇河妖")
// 三目运算符
String min;
min = 3>5?"呵呵":"喜喜";
System.out.println(min); // 输出喜喜
public class Test05 {
public static void main(String[] args) {
int a =10;
int b = 10;
boolean boo = (a>b)&&(b<a); //false 有一个错就 false
System.out.println(boo);
boolean aoo = (a>b)||(b<a); //false 有一个对就true
System.out.println(aoo);
boolean coo = !(a>b)||(b<a);// true 负负得正
System.out.println(coo);
boolean doo = (12==0)&&(1/0< 1); // false 前面错了,后面就不再运行
// boolean doo = (1/0< 1)&&(12==0); 报错,1/0不存在。
System.out.println(doo);
}
// if else流程控制语句
System.out.println("请输入您的成绩");
Scanner scanner = new Scanner(System.in);
int score = scanner.nextInt();
if(score>90) {
System.out.println("你好牛逼");
} else {
System.out.println("小伙子,洗洗睡吧");
流程图如下:
原文链接:https://blog.csdn.net/SoULikeMe/article/details/109753462
作者:java战神
链接:http://www.javaheidong.com/blog/article/793/8fc76de95026f6111baf/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!