Last active
August 29, 2015 14:01
-
-
Save jikeytang/d1a71e69592ec582280f to your computer and use it in GitHub Desktop.
[ Javascript ] - 20140521-题目1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
今天三题由杭州-轨道提供,他的blog:http://blog.csdn.net/chriswenwu/ | |
求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有用户控制。 | |
回复时注意加上下面这句话,才会有语法高亮或格式缩进。 | |
```javascript |
加法: 从低位加到高位.
function sum( m, n ) {
m = ~~m, n = ~~n;
if ( m < 1 || n < 1 ) return m;
var ret = m, cur = m, i = 0;
while ( ++i < n ) {
cur = cur * 10 + m;
ret += cur;
}
return ret;
}
function getValue(v, num){ // v代表数字, num代表几个
if( num <= 1){
return v ;
}else{
return v*fn( num ) + getValue(v, num - 1);
}
}
function fn( num ){
var a = '' ;
for(var i = 0; i < num; i ++ ){
a += 1 ;
}
return parseInt(a);
};
console.log( getValue( 3,3 ) )
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
//借助repeat方法