我的程序上有逻辑错误,如果语句有效,但是当用户输入血液型& Rhfactor它仍然显示O+不论uinput

发布于 2025-01-24 13:08:47 字数 1441 浏览 0 评论 0原文

这是第一部分:

package Week5;
class BloodData
{
private String bloodType;
private String rhFactor;

public BloodData()
{
    bloodType = "O";
    rhFactor = "+";
}
public void setBloodType (String bloodType){
    this.bloodType = bloodType;
}
public void setRhFactor (String rhFactor){
    this.rhFactor = rhFactor;
}
String getBloodType(){
    return this.bloodType;
}
String getRhFactor(){
    return this.rhFactor;
}
}

这是主要方法:

package Week5;
import java.util.Scanner;
public class RunBloodData
{
public static void main(String[] args) {
    Scanner input = new Scanner(System.in);     
    BloodData bd = new BloodData();

    System.out.print("Enter blood type of patient : ");
    bd.setBloodType(input.nextLine());
    System.out.print("Enter the Rhesus factor (+ or -) : ");
    bd.setRhFactor(input.nextLine());
        
    if(bd.getBloodType().equals("") && bd.getRhFactor().equals(""))
    {
        bd = new BloodData();
        System.out.println (bd.getBloodType().toUpperCase() + bd.getRhFactor() + " is added to the bloodbank.");
    }
    else
    {
        bd = new BloodData();
        System.out.println (bd.getBloodType().toUpperCase() + bd.getRhFactor() + " is added to the bloodbank.");
    }
}

}

注意:我高度怀疑我必须在新的Blooddata内部放一些东西:

else
    {
        bd = new BloodData();

我只是不知道考虑到Bloodtype和Rhfactor是私人且不静态的。

Here's the first part:

package Week5;
class BloodData
{
private String bloodType;
private String rhFactor;

public BloodData()
{
    bloodType = "O";
    rhFactor = "+";
}
public void setBloodType (String bloodType){
    this.bloodType = bloodType;
}
public void setRhFactor (String rhFactor){
    this.rhFactor = rhFactor;
}
String getBloodType(){
    return this.bloodType;
}
String getRhFactor(){
    return this.rhFactor;
}
}

here's the main method:

package Week5;
import java.util.Scanner;
public class RunBloodData
{
public static void main(String[] args) {
    Scanner input = new Scanner(System.in);     
    BloodData bd = new BloodData();

    System.out.print("Enter blood type of patient : ");
    bd.setBloodType(input.nextLine());
    System.out.print("Enter the Rhesus factor (+ or -) : ");
    bd.setRhFactor(input.nextLine());
        
    if(bd.getBloodType().equals("") && bd.getRhFactor().equals(""))
    {
        bd = new BloodData();
        System.out.println (bd.getBloodType().toUpperCase() + bd.getRhFactor() + " is added to the bloodbank.");
    }
    else
    {
        bd = new BloodData();
        System.out.println (bd.getBloodType().toUpperCase() + bd.getRhFactor() + " is added to the bloodbank.");
    }
}

}

NOTE: I HIGHLY SUSPECT THAT I HAVE TO PUT SOMETHING INSIDE of new bloodData in:

else
    {
        bd = new BloodData();

I just don't know what to call considering bloodType and rhFactor are private and non-static.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

篱下浅笙歌 2025-01-31 13:08:47

我修复了它,我只需要在我的其他语句中删除bd = new Blooddata();,以便将注册任何输入。

I fixed it, I just had to remove bd = new BloodData(); in my else statement so any input will be registered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文