我正在尝试做一些我们的教授给我们准备考试的练习,但我遇到了一个非常烦人的问题。
练习需要两个输入,n 和 d,程序必须找到从数字 n 中删除 d 个小数的最小数字。问题出在第 40 或 41 行附近,因为我不知道如何获得足够的循环来尝试所有可能的循环。至于现在,该程序是有限的,不能与大多数输入一起正常工作。
示例输入: 32751960 3
预期输出: 21960(这是我们可以通过从第一个数字中删除 3 个小数点得到的最小数字)
我得到的是: 31960
提前感谢任何愿意帮助我的人。
代码:
package main
import (
"fmt"
"os"
"bufio"
"strconv"
"strings"
"math"
)
var (
input string
n, d, max int
num, dec string
in []int
)
func main (){
getInput()
max = n
fmt.Println("Variables: ", n, d)
//Check
if d>len(num){
fmt.Println(math.NaN())
os.Exit(0)
}
//The problematic cicle
for i:=d; i<=len(num); i++{ //On line 40 or 41 lies the problem: I don't get enough loops to check every possible combination,
//and at the same time i have to limit the i var to not exceed the slice boundaries
temp := num[:i-d] + num[i:]
if temp == ""{ //To avoid blank strings
continue
}
itemp, _ := strconv.Atoi(temp)
fmt.Println(itemp)
if itemp < max {
max = itemp
}
}
fmt.Println("Best number:",max)
}
func getInput(){
scanner := bufio.NewScanner(os.Stdin)
if scanner.Scan(){
input = scanner.Text()
}
for _, s := range strings.Fields(input){
i, err := strconv.Atoi(s)
if err != nil {
fmt.Println(err)
}
in = append(in, i) //
}
n = in[0] //main number
d = in[1] //decimals to remove
num = strconv.Itoa(n)
dec = strconv.Itoa(d)
}
明月笑刀无情
相关分类