- 博客(16)
- 收藏
- 关注
原创 Mac中单独安装git需要xcode的问题+安装新版git代替旧版
单独安装git for mac v2.10.1时本人也遇到了这个问题,上述回答无法解决,说到底,还是个环境变量path的配置优先问题。先来看安装包中的说明文档,其实已经可以发现问题了:Step 1 - Install Package------------------------Double-click the package in this disk image to ins
2017-03-09 14:14:05 3742
原创 解决浙大PAT用JAVA返回非零以及运行超时异常
恕我先直言,陈老师是时候更新下pat的测试java的判定系统了吧。。。简直是对java选手的亵渎啊……恐怕很多人遇到了这个情况,第三方牛客网运行正常,到了浙大pat官网用同样的java代码怎么就返回非零了呢?请各位往下看!一、对于返回非零,官方微信写的是:c语言没有return 0,java语言运行出现异常。解决方法:首先确保没有加package,类
2017-03-03 17:56:51 11142 7
原创 Uva227 Puzzle 谜题 (java版本)
Puzzle Time limit: 3.000 seconds A children's puzzle that was popular 30 years ago consisted of a 5x5 frame which contained 24 small squares of equal size. A unique letter
2016-09-04 19:57:32 519
原创 UVa455 Periodic Strings 周期串 (java版本)
A character string is said to have period k if it can be formed by concatenating one or more repetitions of another string of length k. For example, the string “abcabcabcabc” has period 3, since it is
2016-09-04 19:54:37 550
原创 UVa1225 Digit Counting 数数字 (java版本)
数数字(Digit Counting, ACM/ICPC Danang 2007, UVa 1225)把前n(nimport java.util.Scanner;public class UVa1225 { public static void main(String[] args) { Scanner in= new Scanner(System.in); Strin
2016-09-04 19:51:09 842
原创 UVa1586 Molar mass 分子量 (java版本)
题目描述:分子量问题,给出一个物质的分子式,求分子量,本题中的分子式只包括4种原子,分别为C,H,O,N原子量分别为12.01,1.008,16.00,14.01例如,C6H5OH的分子量94.108g/mol.难点在元素后跟着多位数字时的处理。import java.util.Scanner;public class UVa1586 { public static void
2016-09-04 19:48:40 984
原创 UVa 1585 Score 得分 (java版本)
Score There is an objective test result such as ``OOXXOXXOOO". An `O' means a correct answer of a problem and an `X' means a wrong answer. The score of each problem of this test is calculate
2016-09-04 19:47:04 640
原创 UVa1584 Circular Sequence(环状序列) (java版本)
Some DNA sequences exist in circular forms as in the following figure, which shows a circular sequence ``CGAGTCAGCT", that is, the last symbol ``T" in ``CGAGTCAGCT" is connected to the first symbol ``
2016-09-04 10:27:46 552
原创 UVa1583 - Digit Generator 生成元 (java版本)
1583 - Digit GeneratorTime limit: 3.000 seconds原始地址:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=829&page=show_problem&problem=4458imp
2016-09-03 20:42:52 565
原创 习题2-4 子序列的和(subsequence)(java版本)
习题2-4 子序列的和(subsequence)输入两个正整数 n 2 + 1/(n+1)2 +...+ 1/m2,保留5位小数。输入包含多组数据,结束标记为n=m=0。注意:本题有陷阱。样例输入:2 465535 6553600 0样例输出:Case 1
2016-09-03 19:15:33 665
原创 习题2-6 排列(permutation)(java版本)
习题2-6 排列(permutation)用1,2,3,...,9组成3个三位数 abc,def 和 ghi,每个数字恰好使用一次,要求 abc :def:ghi = 1:2:3。按照“abc def ghi”的格式输出所有的解,每行一个解。public class permutation { public static void main(String[]
2016-09-03 19:13:40 570
原创 习题2-5 分数化小数 (decimal) (java版本)
习题2-9 分数化小数 输入正整数a,b,c,输出a/b的小数形式,精确到小数点后c位。a,b 输入应该包含多组数据,结束标记为a=b=c=0.样例输入:1 6 40 0 0样例输出:Case 1:0.1667
2016-09-03 19:08:11 773
原创 输出一个n层的倒三角形 (java版本)
习题2-4 倒三角形输入正整数n ≤ 20,输出一个n层的倒三角形。例如n = 5时输出如下:######### ####### ##### ### #impo
2016-09-03 19:05:39 10121
原创 求100-999中的水仙花数 (java版本)
求100-999中的水仙花数,(若三位数abc,abc=a^3+b^3+c^3, 则称abc为水仙花数。如153,1^3+5^3+3^3=1+125+27=153,则153是水仙花数)public class shuixianhua { public static void main(String[] args) { for(int i=100;i<=999;i++){
2016-09-03 18:51:54 3581
原创 UVa 10082 - WERTYU (java版本)
题目:键盘编码,每个字符替换成它在键盘上前面的字母(格式符除外)。思路:思路就是从char[]数组中找到相对应的字符,输出其中的前一位字符。易错点:找字符时的两个限制条件,应该先判断找的长度越界,用&&逻辑屏蔽字符不一样这个后判条件。import java.util.Scanner;public class wertyu { public static
2016-09-03 18:06:50 574
原创 UVa 272 - TEX Quotes (java版本)
272 - TEX QuotesTime limit: 3.000 secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=208T
2016-09-03 11:21:13 825 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人