摘要:
写了一个javascript的小练习,实现金字塔的输出,使用了for循环语句,关键在于for循环中各个数值的计算,还有就是空格的输出,使用 貌似是最正宗的。代码如下:<html> <head> <script> var a = window.prompt("请输入一个数"); for(var b = 1; b <= a; b++) { for(var c = (a - b) * 2; c >= 0; c--) { document.write(""); } for(var d = 1; d 阅读全文
摘要:
转至:http://blog.163.com/linshengru@126/blog/static/98663794201010268528529/public class Test{ public static void main(String args[]){ System.out.println(0.05+0.01); System.out.println(1.0-0.42); System.out.println(4.015*100); System.out.println(123.3/100); }
};... 阅读全文
摘要:
这个错误一般是在使用反射创建对象的时候出现的异常一般是这个类是接口或者是抽象类,或者是该类没有无参构造方法报的错误.java.lang.InstantiationException: java.math.BigDecimal at java.lang.Class.newInstance0(Class.java:340) at java.lang.Class.newInstance(Class.java:308) at com.blue.summer.core.interceptor.ObjectInterceptor.createObject(ObjectInterceptor.java... 阅读全文