This commit is contained in:
Leufolium 2024-07-31 21:59:39 +08:00
parent 73ada4aa6e
commit b4e6c2532b
1 changed files with 2 additions and 2 deletions

View File

@ -3660,8 +3660,8 @@ func (s *Service) ApiCreateRavenIQTest(ctx *gin.Context, req *Raven_IQ_testproto
IQLowerBound := float64(IQResultMpcfg.Map[IQBlockId].IQLowerBound)
IQUpperBound := float64(IQResultMpcfg.Map[IQBlockId].IQUpperBound)
IQ := int64(math.Ceil(float64(totalScore-totalScoreLowerBound)/float64(totalScoreUpperBound-totalScoreLowerBound)*(IQUpperBound-IQLowerBound) + IQLowerBound))
if IQ == 0 {
IQ = IQResultMpcfg.Map[IQBlockId].IQLowerBound
if IQ < 70 {
IQ = 70
}
req.IQ = goproto.Int64(IQ)