/*【程序8】
题目:求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。*/
packagetest;
importjava.util.Scanner;
publicclasstest{
publicstaticintsum(intnumber,intinput){
intresult=0;
inttem=number;
..
分类:
编程语言 时间:
2014-05-27 03:57:44
阅读次数:
237
/*【程序7】
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
1.程序分析:利用while语句,条件为输入的字符不为‘\n‘.*/
packagetest;
importjava.util.ArrayList;
importjava.util.List;
publicclasstest{
publicstaticList<Integer>countstr..
分类:
编程语言 时间:
2014-05-27 03:32:01
阅读次数:
375
1、对于string,number等基础类型,==和===是有区别的1)不同类型间比较,==之比较“转化成同一类型后的值”看“值”是否相等,===如果类型不同,其结果就是不等2)同类型比较,直接进行“值”比较,两者结果一样2、对于Array,Object等高级类型,==和===是没有区别的进行“指针...
分类:
Web程序 时间:
2014-05-22 05:12:31
阅读次数:
340
属性摘要属性说明documentPath:String
FlashPaper文件的路径.borderThickness:Number 边框宽度.borderColor:String
边框颜色.UIElements:Object 外观元素的可见性.currentZoom:Object 默认缩放比例.w...
题目链接 The string "PAYPALISHIRING" is written in a
zigzag pattern on a given number of rows like this: (you may want to display
this pattern in a fixed ...
分类:
其他好文 时间:
2014-05-22 01:55:19
阅读次数:
320
The number of 1 bits in an integer.
分类:
其他好文 时间:
2014-05-22 01:21:04
阅读次数:
214
Find a number which appears once in an array with
all the other numbers appear twice.
分类:
其他好文 时间:
2014-05-22 01:08:40
阅读次数:
278
Number of 1 between 1 to N.
分类:
其他好文 时间:
2014-05-22 01:00:08
阅读次数:
230
Catch That Cow
Problem Description
Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number li...
分类:
其他好文 时间:
2014-05-21 07:02:40
阅读次数:
312
本文正确性有待商榷,高手路过请不吝指教1.js中只有对象,包括对象,函数,常量等。对象不用解释。函数也有属性,常见之一就是prototype。常量也有属性:(3).__proto__;//Number
{}2.函数的prototype函数是一种特殊的对象,它可以直接通过小括号来执行自身代码。函数还有...
分类:
Web程序 时间:
2014-05-21 05:48:58
阅读次数:
347