- 浏览: 304152 次
- 性别:
- 来自: 江阴
文章列表
不知道什么原因,iteye竟然不准发布我自己的推荐。
我上次在这里发表了一篇,我自己的网店:伊伊港货代购
竟然没有任何通知就删除我的博客文章,
只允许你们在我的博客里面发布广告,
不允许我的博客中有我特色的东西?
我再发布一次 http://shop68574587.taobao.com
伊伊港货代购。欢迎大家的关注和光临。谢谢大家,
顺便我要发布两个学习iphone开发方面的地址
iPhone人机界面指南(中文)
http://www.apple.com.cn/developer/iphone/library/documentation/UserExperience/Con ...
http://snowolf.iteye.com/blog/379860 写得挺不错。
记录一下。
请你从字母算式里写出数字计算。
W I N
T H E
+
--------------
G A M E
计算以后得出结果
6 3 0
9 4 2
+
------------
1 5 7 2
O O
S A
C A N
U
+
------------
S E E
计算已经得出结果(有两个答案)
6 6
2 5
1 5 0
3
+
----------
2 4 4
5 5
2 6
1 ...
有一个这样的小学题目:
已知 A 是一个质数,而且 A + 6, A + 8, A + 12, A + 14 都是质数,试求出所有满足要求的质数 A。
package com.xjh.test;
public class PrimeTest {
public static void main(String[] args) {
for (int i = 2, j = 0; i <= 100000; i++) {
if (prime(i) && prime(i + 6) && prime(i + 8) && ...
More.iPhone.3.Development.Tackling.iPhone.SDK.3 pdf
爱范儿: 拇指资讯小众讨论
http://www.ifanr.com/
苹果开发中文网站
http://www.cocoachina.com/
苹果资讯(繁体中文)
http://apple4.us/
苹果开发者联盟(苹果中文官方网站)
https://developer.apple.com/cn/
马上着手开发iOS 应用程序(中文)
https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapiOSCh/chapters/Introduction.html
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DeleterDir {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
System.out.println("Begin time is: " + sdf.format ...
package com.xjh.util;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.PrintWriter;
public class FileUpdate {
public static void main(String[] args) throws Exception {
StringBuilder sb = new StringBuilder();
BufferedReader in = new Buffe ...
iPhone Advanced Projects.pdf
圆珠笔和铅笔的单价是多少?
- 博客分类:
- 日常生活记录
买2支圆珠笔和3支铅笔要7.8元,
买3支圆珠笔和2支铅笔要7.2元.
圆珠笔和铅笔的单价各是多少元?
解答:
假设:圆珠笔的单价为x元,铅笔的单价为y元,得到如下二元一次等式:
2x + 3y = 7.8 (1)
3x + 2y = 7.2 (2)
(1) + (2) 5x + 5y = 15 (3)
(2) - (1) x - y = -0.6 (4)
x + y = 3
x - y = -0.6
2x = 2.4
x = 1.2
y = 1.8
所以 圆珠笔的单价为 1.2 元,铅笔的单价为 1.8元。
有个正三角形,每个角上有只蚂蚁
- 博客分类:
- 日常生活记录
有个正三角形,每个角上有只蚂蚁,每只蚂蚁朝另一只蚂蚁直线走,有多少概率蚂蚁撞不到?(请说出理由)
三只蚂蚁一共有2×2×2 = 8 种走法。
除了同时顺时针或者逆时针走撞不到以外,其它的都要撞到。
这样几率是2/8 = 1/4 也就是 0.25
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class ValidateDate {
public static void main(String[] args) throws ParseException {
String inputDate = "2009-13-32";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
if (input ...
<html>
<head>
<title>xiejiaohui test javascript</title>
<script>
function add() {
var pos1 = document.getElementById("pos1");
var pos2 = document.getElementById("pos2");
for (var i = 0; i < pos1.options.length; i++) {
if (pos1.opti ...
- 2009-07-19 20:18
- 浏览 1289
- 评论(0)
例子来源:《Ajax 基础教程》 金灵 等译 这本书非常不错
dynamicLists.html
<html>
<head>
<title>Dynamically Filling Lists</title>
<script type="text/javascript">
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("M ...
- 2009-03-25 23:18
- 浏览 785
- 评论(0)
例子来源:《Ajax 基础教程》 金灵 等译 这本书非常不错
validation.html
<html>
<head>
<title>Using Ajax for validation</title>
<script type="text/javascript">
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("M ...
- 2009-03-25 23:15
- 浏览 725
- 评论(0)