• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

所述值尚未设定值

用户头像
it1352
帮助1

问题说明

Module Module1

    Sub Main()
        Dim firstName As String
        Dim lastName As String
        Dim pointsReceived As Decimal
        Dim scorePercentage As Decimal
        Dim finalGrade As String

        Console.WriteLine("Welcome to the Stundent Grade Calculator. This program will calculate students score percentage and grade score.")
        Console.WriteLine("Please Enter students first name:")
        firstName = Console.ReadLine()
        Console.WriteLine("Please enter students last name:")
        lastName = Console.ReadLine()
        Console.WriteLine("Please enter students points received:")
        pointsReceived = Console.ReadLine()
        If pointsReceived >= 0 And pointsReceived <= 1000 Then
            Console.WriteLine("Good Score")
        Else
            Console.WriteLine("Error")
        End If

        scorePercentage = (pointsReceived / 1000) * 100
        If scorePercentage >= 0 And scorePercentage <= 59 Then
            finalGrade = "F"
            If scorePercentage >= 60 And scorePercentage <= 69 Then
                finalGrade = "D"
                If scorePercentage >= 70 And scorePercentage <= 79 Then
                    finalGrade = "C"
                    If scorePercentage >= 80 And scorePercentage <= 89 Then
                        finalGrade = "B"
                        If scorePercentage >= 90 And scorePercentage <= 100 Then
                            finalGrade = "A"
                        Else
                            Console.WriteLine("Error")
                        End If
                    End If
                End If
            End If
        End If
        Console.WriteLine("Student first name: " & firstName)
        Console.WriteLine("Students last name: " & lastName)
        Console.WriteLine("Students points: " & pointsReceived)
        Console.WriteLine("Calculated Percentage: %" & scorePercentage)
        Console.WriteLine("Final Grade: " & finalGrade)*/Problem is finalGrade 
        Console.ReadLine()

    End Sub

End Module

正确答案

#1
试试这个



Try this

Dim firstName As String =""
Dim lastName As String =""
Dim pointsReceived As Decimal = 0
Dim scorePercentage As Decimal = 0
Dim finalGrade As String = "" ' this variable is not initialized with a value
您应该始终为变量赋值。如果不是,编译器会抱怨。

如果你真的没有任何默认值来分配,那么这样做:

You should always assign a value to a variable. The compiler will complain if it is not.
If you really do not have any default value to assign, then do this:
Dim finalGrade As String = Nothing
您输入的总分数是多少?什么是计算的百分比?



你的逻辑存在缺陷。

如果分数百分比在59到60或69之间并且70或79和80或89和90,都不会满足任何条件。

这个finalGrade将保持为空。
What total points have you entered? And what is the calculated percentage?

There is a flaw in your logic.
If the score percentage is between 59 and 60 or 69 and 70 or 79 and 80 or 89 and 90, none of the conditions will be met.
This finalGrade will remain empty.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfhaeb
系列文章
更多 icon
同类精品
更多 icon
继续加载