package com.gll.hhh.shu2;
public class lianxi2 {
public static void main(String[] args) {
System.out.println("22/4=" + 22/4);//返回5
System.out.println("22/4.0=" + 22/4.0);//返回5.5
System.out.println("22%4=" + 22%4);//整除;返回2
char ch1 = 'A',ch2;
int x = ch1+5;
ch2 = (char) (ch1 + 5);//强制转换,整数转换成字符
System.out.println("x = " + x);
System.out.println("ch2="+ch2);
}
}
Java代码
最新推荐文章于 2024-11-09 12:43:52 发布
本文展示了Java代码片段,涉及基本运算符(如整数除法和求余),类型转换(字符整数转换),以及如何在`com.gll.hhh.shu2`包中的`lianxi2`类中使用`main`方法执行这些操作。
摘要由CSDN通过智能技术生成