Loading

上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 75 下一页
摘要: 1 #include <iostream> 2 #include <stdio.h> 3 #include <algorithm> 4 5 using namespace std; 6 7 int dp[105][105]; 8 9 int main() 10 { 11 string s1, s2; 阅读全文
posted @ 2019-06-29 11:58 拾月凄辰 阅读(106) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 int list[105]; 8 int dp1[105]; 9 int dp2[105]; 10 11 12 int main() 13 { 14 int n; 15 while(cin >> n) 16 ... 阅读全文
posted @ 2019-06-29 08:46 拾月凄辰 阅读(255) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-06-28 13:20 拾月凄辰 阅读(138) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/bengshakalakaka/article/details/83420150 阅读全文
posted @ 2019-06-28 10:06 拾月凄辰 阅读(142) 评论(0) 推荐(0)
摘要: 原因:字体不对!!! 比如你英文用的Calibri字体,但是手机的wps或者别的电脑上的低版本的office没有这个字体,所以就会强制转换成那里有的字体(一般是黑体),此时字体就会错位!! 不要以为那个字体看似很通用,其实低版本的office或者手机上的wps就是没这种字体!!!(比如等线这个字体低 阅读全文
posted @ 2019-06-05 20:50 拾月凄辰 阅读(5039) 评论(0) 推荐(0)
摘要: Window –> Preferences –> General –> Appearance –> Colors and Fonts –> Basic –> Text Font –> Edit 脚本中Eclipse默认选择为西欧字符,把其改为中欧字符,如下图,保存设置之后重启eclipse即可。 阅读全文
posted @ 2019-05-31 09:17 拾月凄辰 阅读(2185) 评论(0) 推荐(0)
摘要: 1、关掉代码检查。 setting -> Editor -> Inspections,把右面方框框里的对勾全去掉,或者根据需要去掉。原理是关闭不必要的代码检查,提高速度。 2、关掉多余的插件 setting -> plugins -> show中选择custom,把除了maven helper,jb 阅读全文
posted @ 2019-05-30 07:32 拾月凄辰 阅读(17455) 评论(0) 推荐(0)
摘要: 转载自: https://blog.csdn.net/weixin_38055381/article/details/81127079 阅读全文
posted @ 2019-05-28 15:01 拾月凄辰 阅读(473) 评论(0) 推荐(0)
摘要: 配置eclipse用于写JavaFX:1、确定JRE中有jfxrt.jar jdk82、选中项目-->属性-->Java Build Path3、Libraries-->jre包下Access rules-->edit4、Add-->添加一条规则"javafx/**",Forbidden改为Acce 阅读全文
posted @ 2019-05-16 19:17 拾月凄辰 阅读(1086) 评论(0) 推荐(1)
摘要: 一丶 最大公因数求法: 辗转相除法(也称欧几里得算法)原理: 二丶最小公倍数求法:两个整数的最小公倍数等于两整数之积除以最大公约数 阅读全文
posted @ 2019-03-14 12:03 拾月凄辰 阅读(1526) 评论(0) 推荐(0)
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 75 下一页