上一页 1 ··· 9 10 11 12 13
摘要: // 写4个方法:加减乘除// 利用循环+ switch进行用户交互// 传递需要操作的两个数// 输出结果 public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.p 阅读全文
posted @ 2021-11-13 23:50 tuyin 阅读(2052) 评论(0) 推荐(0)
摘要: package com.tu.struct;//整个程序打印出/* * *** ***** ******* ********* ******* ***** *** * */public class TestDemo { public static void main(String[] args) { 阅读全文
posted @ 2021-11-13 16:34 tuyin 阅读(280) 评论(0) 推荐(0)
摘要: package com.tu.struct;public class ForDemo4 { /* 1*1=1 1*2=2 2*2=4 1*3=3 2*3=6 3*3=9 1*4=4 2*4=8 3*4=12 4*4=16 1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 1*6=6 阅读全文
posted @ 2021-11-13 14:59 tuyin 阅读(1554) 评论(0) 推荐(0)
摘要: public class Demo1 { public static void main(String[] args) { //整数拓展: 进制 二进制0b 十进制 八进制0 十六进制0x int i = 10; int i2 = 010;//八进制0 int i3 = 0x10;//十六进制0x 阅读全文
posted @ 2021-11-11 16:18 tuyin 阅读(30) 评论(0) 推荐(0)
摘要: window常用快捷键 打开任务管理器:Ctrl+Shift+Esc 关闭窗口:Alt+F4 切换窗口:win键+Tab 放大镜:win键+“+” 打开cmd方式 开始+window系统+命令提示符 win键+R 输入cmd打开控制台(推荐使用) 在任意的文件夹下面,按住shift键+鼠标右键点击, 阅读全文
posted @ 2021-11-11 16:16 tuyin 阅读(53) 评论(0) 推荐(0)
摘要: Markdown学习 标题 一级标题(#+空格+标题+回车); 二级标题(##+空格+标题+回车); 三级标题(###+空格+标题+回车) 四级标题(####+空格+标题+回车) 五级标题(#####+空格+标题+回车) 六级标题(######+空格+标题+回车) 最多到六级标题 字体 我是大帅哥! 阅读全文
posted @ 2021-11-05 15:19 tuyin 阅读(105) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13