- 博客(9)
- 收藏
- 关注
原创 table表格基础
组成:caption(标题)、thead(表头)、tbody(表体)、tfoot(表尾)align:设置表格对齐方式(left(默认)/right/center)写在列中(td),需要从第一个跨行跨列的单元格写,然后删除多余的。rowspan(跨行)/colspan(跨列)cellpadding:设置内容与单元格间距。border:设置表格边框(有两层边框)cellspacing:设置像素间距。width:设置表格宽度。...
2022-08-25 22:37:46 1265 1
原创 Java基础:用方法递归求1~100的和
什么是方法递归? -方法调用自身方法重点 -理解栈内存中方法的执行过程public class recursion { public static void main(String[] args) { int n = 100; int retValue = sum(n); System.out.print(retValue); } public static int sum(int n) { if(n == 1) { return 1; }...
2021-09-24 22:16:33 220
原创 升级版 用for循环求1-100中的素数,要求每7个换一行输出
在前者的基础上加上统计机制。1.计数不归0public class suShu { public static void main(String[] args) { //加入统计机制 int count = 0; //找到1-100的数i,因为1不是素数,所以从2开始 for(int i = 2; i <= 100; i++) { //定义是素数为true boolean isSuShu = true; //找出除1和自
2021-09-14 14:33:54 583
原创 用for循环求1-100中所有的素数
解题思路:1.什么是素数? -素数又称质数,大于1且只能被1和自身整除的自然数。 -例5: 5%1==0; 5%2!=0; 5%3!=0; 5%4!=0; ...
2021-09-14 13:45:36 19020
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人