上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 43 下一页
摘要: function fact(n) if n==0 then return 1 else return n*fact(n-1) endendprint("输入一个数")a=io.read("*number")print(fact(a)) 阅读全文
posted @ 2014-03-05 16:18 yufenghou 阅读(218) 评论(0) 推荐(0)
摘要: public void queryTaskResult2() throws Exception { HttpServletRequest request = ServletActionContext.getRequest(); HttpServletResponse response = ServletActionContext.getResponse(); PrintWriter out = response.getWriter(); String newsIdselect = request.getParameter("new... 阅读全文
posted @ 2014-02-27 21:58 yufenghou 阅读(217) 评论(0) 推荐(0)
摘要: java.lang.RuntimeException: Invalid action class configuration that references an unknown class named [MmsSampleTextAction] at org.apache.struts2.convention.ConventionsServiceImpl.determineResultPath(ConventionsServiceImpl.java:99) at org.apache.struts2.convention.ConventionUnknownHandler.dete... 阅读全文
posted @ 2014-02-26 16:57 yufenghou 阅读(362) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2014-02-16 17:41 yufenghou 阅读(160) 评论(0) 推荐(0)
摘要: import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.List;import java.util.StringTokenizer;public class C 阅读全文
posted @ 2014-02-15 17:41 yufenghou 阅读(454) 评论(0) 推荐(0)
摘要: var temp=winFormPanel.getForm().findField('selectedType').getGroupValue(); 阅读全文
posted @ 2014-02-13 09:39 yufenghou 阅读(271) 评论(0) 推荐(0)
摘要: SELECT mms_sample_datas.* from mms_sample_dataswheremms_sample_datas.mms_idin( SELECT mms_sample_datas.mms_id FROM mms_sample_datas INNER JOIN mms_text_datas ON mms_sample_datas.uuid = mms_text_datas.mms_uuid AND mms_text_datas.is_repair_audit = 1 ... 阅读全文
posted @ 2014-02-12 20:18 yufenghou 阅读(276) 评论(0) 推荐(0)
摘要: 测试页面 阅读全文
posted @ 2014-02-12 11:26 yufenghou 阅读(1296) 评论(0) 推荐(0)
摘要: using UnityEngine;using System.Collections;public class YY : MonoBehaviour { private Rect window0=new Rect(20,20,200,200); private Rect window1=new Rect(250,20,200,200); // Use this for initialization void Start () { } // Update is called once per frame void Update () { ... 阅读全文
posted @ 2014-02-04 17:34 yufenghou 阅读(207) 评论(0) 推荐(0)
摘要: using UnityEngine;using System.Collections;public class LLL : MonoBehaviour { Vector2 scrollPosition; // Use this for initialization void Start () { scrollPosition [0] = 50; scrollPosition [1] = 50; } // Update is called once per frame void Update () { } ... 阅读全文
posted @ 2014-02-04 17:20 yufenghou 阅读(193) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 43 下一页