Skip to content

2020-03-18 四则运算  #12

@fanmingfei

Description

@fanmingfei
function calculator (string) {
// ...
}

请不要使用eval/Function等

calculator('1 + 2 +3+4') // 10
calculator('1 * 2 + 3 * 4') // 14
calculator('1+2* 3+4') // 11
calculator('1+ 2* 3*4') // 25
calculator('1+2+3/4') // 3.75
calculator('1/2+3+4') // 7.5
calculator('1+2/3+4') // 5.6666666666666
calculator('1+2-3+4') // 4
calculator('1+2+3-4') // 2
calculator('1-2+3+4') // 6
calculator('1+2-3*4') // -9
calculator('1 / 2 / 3 / 4') // 0.04

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions