摘要: public class JAVA17_3 { public static String formatFloatNumber(Double value) { if(value != null){ if(value.doubleValue() != 0.00){ java.text.DecimalFormat df ... 阅读全文
posted @ 2018-02-10 14:53 ZaleJ 阅读(335) 评论(0) 推荐(0) 编辑
摘要: class CardDelta{ int top=1; int left=3; int right=2; /* A 9 6 4 8 3 7 5 2 * */ public CardDelta() { } public void sort3Num() { ... 阅读全文
posted @ 2018-01-28 15:00 ZaleJ 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Luhn算法 阅读全文
posted @ 2018-01-25 14:23 ZaleJ 阅读(144) 评论(0) 推荐(0) 编辑
摘要: a1.java 阅读全文
posted @ 2018-01-25 14:18 ZaleJ 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 跑得是慢了点。。。 有没有大佬有更好的方法 阅读全文
posted @ 2018-01-24 16:30 ZaleJ 阅读(199) 评论(0) 推荐(0) 编辑
摘要: node.h lk_stack.h sq_stack.h main.cpp 阅读全文
posted @ 2017-04-06 20:14 ZaleJ 阅读(361) 评论(0) 推荐(0) 编辑
摘要: main.cpp link_list.h 阅读全文
posted @ 2017-04-06 20:09 ZaleJ 阅读(284) 评论(0) 推荐(0) 编辑
摘要: main.cpp sq_list.h 阅读全文
posted @ 2017-03-20 10:41 ZaleJ 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 《数据结构》 实验报告 题目:_顺序表的实现 学号:___________ 姓名:___________ 东南大学计算机系 实验题目 一、 实验目的 二、 实验内容 选题一:集合的交、并、差运算 【问题描述】 编制一个能演示执行集合的交、并和差运算的程序。 【任务要求】 1) 集合元素用小写英文字母 阅读全文
posted @ 2017-03-06 11:33 ZaleJ 阅读(464) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main(void){ char s[100]; int i=0; cin >> s; for(i=0; *(s+i)!='\0'; ++i)continue; cout <<i; return 0; } 阅读全文
posted @ 2017-02-27 11:19 ZaleJ 阅读(186) 评论(0) 推荐(0) 编辑