zoukankan      html  css  js  c++  java
  • Nine Digits Expression

    Problem:

    Insert + ,-,*,/ signs as necessary in the string 123456789 to form an expression that evaluates to a certain number.

    Answer:

    It returns:

    Solutions 1:    1*2345*6/7+8-9=2009
    Solutions 2:    1/2*3*4*5*67+8-9=2009
    Solutions 3:    1*2/3*45*67+8-9=2009
    3 solutions were found!

    Solutions 1:    9*8-7+6*54*3*2*1=2009
    Solutions 2:    9+8*7+6*54*3*2*1=2009
    Solutions 3:    9*8-7+6*54*3*2/1=2009
    Solutions 4:    9+8*7+6*54*3*2/1=2009
    4 solutions were found!

  • 相关阅读:
    strace命令的使用
    部署软件RDMA的步骤
    centos7上安装iptables
    在Linux中的.iso文件的处理方法
    centos7关闭自动锁屏
    SSH配置优化和慢的解决方法
    sort排序和uniq统计命令
    ansible的携带密码访问
    fabric入门
    防火墙设置本机端口转发
  • 原文地址:https://www.cnblogs.com/fengju/p/6336215.html
Copyright © 2011-2022 走看看