摘要: public class ReverseString { public static void main(String[] args) { System.out.println(reverseWords(" the sky is blue ")+"|"); } public static Strin 阅读全文
posted @ 2017-08-22 01:50 逸文皓 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 1、学习和使用的新软件: 花生壳,wamp,word、ppt 2、学习和使用的新工具 在设计界面的时候学会使用了Qt,界面美化过程中设计图片使用了photoShop 3、学习和掌握的新语言、新平台 数据库、新浪云、sqt、博客园 4、统 阅读全文
posted @ 2017-06-25 22:28 逸文皓 阅读(138) 评论(1) 推荐(0) 编辑
摘要: 软件工程第一次作业要求 本次作业的标题命名为“软件工程第一次作业” 花20分钟写一个能自动生成小学四则运算题目的“软件”,要求:除了整数以外,还要支持真分数的四则运算。将代码上传至coding.net,并将地址发布至自己的博客 四则运算题目生成软件:https://coding.net/u/wsw1 阅读全文
posted @ 2017-04-23 22:49 逸文皓 阅读(145) 评论(1) 推荐(0) 编辑
摘要: public class Solution { /** * @param n: An integer * @return: An integer */ public int climbStairs(int n) { // write your code here if (n <= 1) { retu 阅读全文
posted @ 2017-03-08 22:57 逸文皓 阅读(80) 评论(0) 推荐(0) 编辑
摘要: public class Solution { /** * @param prices: Given an integer array * @return: Maximum profit */ public int maxProfit(int[] prices) { // write your co 阅读全文
posted @ 2017-03-08 22:56 逸文皓 阅读(81) 评论(0) 推荐(0) 编辑
摘要: public class Solution { /** * @param A: a array of integers * @return : return an integer */ public int removeDuplicates(int[] nums) { // write your c 阅读全文
posted @ 2017-03-08 22:55 逸文皓 阅读(307) 评论(0) 推荐(0) 编辑