上一页 1 2 3 4 5 6 ··· 9 下一页
1. 报错原因:jdk版本太高,lombok版本太低 2. 解决办法:安装更高版本的依赖包,可以去Maven Repository: lombok去查:https://mvnrepository.com/search?q=lombok,看有哪些新版本,多尝试下就没问题 java: java.lang Read More
posted @ 2021-05-20 11:12 ZengZG Views(11417) Comments(1) Diggs(3)
代码: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int ma Read More
posted @ 2021-04-17 20:35 ZengZG Views(457) Comments(0) Diggs(0)
# JJU-干干 试题A :门牌制作【问题描述】小蓝要为一条街的住户制作门牌号。这条街一共有 2020 位住户,门牌号从 1 到 2020 编号。小蓝制作门牌的方法是先制作 0 到 9 这几个数字字符,最后根据需要将字符粘贴到门牌上,例如门牌 1017 需要依次粘贴字符 1、 0、 1、 7,即需要 Read More
posted @ 2021-04-17 15:12 ZengZG Views(395) Comments(0) Diggs(0)
代码: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int gc Read More
posted @ 2021-04-17 11:40 ZengZG Views(50) Comments(0) Diggs(0)
# JJU-干干 试题 A: 跑步训练 代码: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or Read More
posted @ 2021-04-16 19:35 ZengZG Views(304) Comments(0) Diggs(0)
试题 A: 美丽的 2 本题总分:5 分 问题描述:在公元 1 年到公元 2020 年(包含)中,有多少个年份的数位中包含数字 2? #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser Read More
posted @ 2021-04-15 20:46 ZengZG Views(327) Comments(0) Diggs(0)
知识点: wxml: hover-class: 实现点击态效果 hover-class样式显示的原理是 点击时把样式加到class的样式中,冲突时,谁在后面就显示谁! data-val: 用于传数据,e.target.dataset.val调用 js: Number()会得到数字(整数,小数)或者N Read More
posted @ 2021-03-17 10:57 ZengZG Views(732) Comments(0) Diggs(0)
注:出现类似 !pdfTeX error: miktex-pdftex.exe (file ntx-***): Font ntx-*** at *** not found 貌似都可以用以下方法解决 编译环境和编译器:Miktex + WinEdt 解决方案: 1. win+R打开运行窗口,输入cmd Read More
posted @ 2021-02-05 19:32 ZengZG Views(433) Comments(0) Diggs(0)
代码: % 从1-n里选出m个互不相同的数,同时这m个数与i也不相同 function R = difR(i,n,m) R = randperm(n,m); % 从1-n中随机选择m个互不相同的数(n>=m) while ismember(i,R) % 判断i是否在矩阵R中 R = randperm Read More
posted @ 2021-01-05 12:09 ZengZG Views(555) Comments(0) Diggs(0)
css: /* 清除a标签下划线样式 */ a,a:link,a:hover,a:visited,a:active{ text-decoration: none; } Read More
posted @ 2020-12-08 23:43 ZengZG Views(325) Comments(0) Diggs(0)
上一页 1 2 3 4 5 6 ··· 9 下一页