摘要: 7.运算符 public class helloworld { public static void main(String[] args) { //取余 模运算 % int a = 22; int b = 10; System.out.println(a%b); //输出结果2 } public 阅读全文
posted @ 2024-04-12 11:11 xiaodi888 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.注释 //单行注释 /*多行注释*/ /**javaDoc:文档注释 /** * @Description hello */ /** * _ooOoo_ * o8888888o * 88" . "88 * (| -_- |) * O\ = /O * ____/` '\____ * . ' \\| 阅读全文
posted @ 2024-04-12 11:08 xiaodi888 阅读(12) 评论(0) 推荐(0) 编辑