gpt4 book ai didi

java - 如何使用具有字符输入和 boolean 输出的方法?

转载 作者:行者123 更新时间:2023-12-02 04:19:52 24 4
gpt4 key购买 nike

谢谢大家的回答!还有一个问题:如何打印 boolean 值? System.out.println(goodBase) 似乎不起作用

public class Dna {
public static void main(String[] args){
aBase('A');
}

public static boolean aBase (char c) {
char [] charArray = { 'A', 'G', 'C', 'T' };
boolean goodBase;

if (c == 'A' || c == 'G' || c == 'C' || c == 'T')
{
return true;
}
else
{
return false;
}
}
}

谢谢!

最佳答案

如果您在正确的环境中使用该代码,它对我来说是有效的。我在下面附上了一个完整的功能示例:

public class Main {

// create a Test Method
public static boolean test(char c) {
if (c == 'A' || c == 'G' || c == 'C' || c == 'T') {
return true;
} else {
return false;
}
}

public static void main(String[] args) {

// create some sample data
String sample = "AGCTEDHI";

// test
for (int i = 0; i < sample.length(); i++) {
char current = sample.charAt(i);
System.out.println(current + " is " + test(current));
}

}
}

输出:

A is true
G is true
C is true
T is true
E is false
D is false
H is false
I is false

关于java - 如何使用具有字符输入和 boolean 输出的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32916657/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com