String flag0 = sc.nextLine(); boolean a = flag0 =="A"; System.out.println(a);为什么输入为A时是FALSE
时间: 2023-06-20 08:04:58 浏览: 88
在Java中,对于字符串的比较应该使用equals()方法而不是==运算符。因为==运算符比较的是两个对象的引用,而equals()方法比较的是两个对象的内容。因此,你可以改为以下代码:
```
String flag0 = sc.nextLine();
boolean a = flag0.equals("A");
System.out.println(a);
```
这样就可以正确地比较输入的字符串是否为"A"了。
相关问题
import java.util.Scanner; public class PTA01 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine()); String input = sc.nextLine(); String[] strarr = input.split(" "); int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = Integer.parseInt(strarr[i]); } SeceltSort(arr); } public static void SeceltSort(int[] arr) { for (int i = 0; i < arr.length; i++) { int temp = arr[i]; int index = i; boolean flag = false; for (int j = i; j < arr.length; j++) { if (temp > arr[j]) { temp = arr[j]; index = j; flag = true; } } if (flag == false) continue; temp = arr[i]; arr[i] = arr[index]; arr[index] = temp; if(i!=0) System.out.println(); for (int a = 0; a < arr.length; a++) { System.out.print(arr[a]); if (a!=arr.length-1) System.out.print(" "); } } } }
这段代码实现的是选择排序,输入一个整数 n 和 n 个整数,然后对这 n 个整数进行选择排序并输出每次排序后的结果。
具体实现过程:
首先通过 Scanner 对象读取输入,第一行是整数 n,第二行是 n 个整数,用 split 方法将第二行的字符串按空格分割成整数数组。
然后调用 SeceltSort 方法进行选择排序,遍历数组,每次找到未排序部分的最小值,将其与未排序部分的第一个元素交换位置。在交换位置后,输出当前排序结果。
最后的输出结果类似于:
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
每行输出一个排序结果。
将一下java代码转成c语言:import java.util.; public class Main { public static boolean judge(char c1,char c2) { char ch[] = {'#','+','-','','/','%','(',')'}; int num1 = 0,num2 = 0; for(int i = 0;i <= 7;i ++) { if(ch[i] == c1) num1 = i; if(ch[i] == c2) num2 = i; } if(num1 > num2) return true; return false; } public static int calculation(int t1,int t2,char c) { if(c == '+') return t2 + t1; else if(c == '-') return t2 - t1; else if(c == '*') return t2 * t1; else if(c == '%') return t2 % t1; else return t2 / t1; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); Stack<Integer> stk_int = new Stack<>(); Stack<Character> stk_str = new Stack<>(); int index = 0; stk_str.push('#'); for(int i = 0;i < s.length();i ++) { if(s.charAt(i) < '0' || s.charAt(i) > '9') { if(index != i) stk_int.push(Integer.parseInt(s.substring(index,i))); index = i+1; boolean flag = false; while(flag == false) { if (judge(s.charAt(i),stk_str.peek())) { stk_str.push(s.charAt(i)); if(stk_str.peek() == '(' ) stk_str.push('#'); if( stk_str.peek() == ')') { stk_str.pop(); while(stk_str.peek()!='#') { stk_int.push(calculation(stk_int.pop(),stk_int.pop(),stk_str.pop())); } stk_str.pop(); stk_str.pop(); } flag = true; } else { stk_int.push(calculation(stk_int.pop(),stk_int.pop(),stk_str.pop())); } } } if(index != s.length() && i == s.length()-1) stk_int.push(Integer.parseInt(s.substring(index,s.length()))); } while(!stk_int.isEmpty() && stk_str.peek()!= '#') { stk_int.push(calculation(stk_int.pop(),stk_int.pop(),stk_str.pop())); } System.out.println(stk_int.pop()); } }
以下是将 Java 代码转换为 C 语言代码的结果:
```c
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
bool judge(char c1, char c2) {
char ch[] = {'#', '+', '-', '*', '/', '%', '(', ')'};
int num1 = 0, num2 = 0;
for (int i = 0; i <= 7; i++) {
if (ch[i] == c1) num1 = i;
if (ch[i] == c2) num2 = i;
}
if (num1 > num2) return true;
return false;
}
int calculation(int t1, int t2, char c) {
if (c == '+') return t2 + t1;
else if (c == '-') return t2 - t1;
else if (c == '*') return t2 * t1;
else if (c == '%') return t2 % t1;
else return t2 / t1;
}
int main() {
char s[1000];
fgets(s, 1000, stdin);
s[strlen(s) - 1] = '\0';
int index = 0;
int stk_int[1000], top_int = -1;
char stk_str[1000], top_str = '#';
for (int i = 0; i < strlen(s); i++) {
if (s[i] < '0' || s[i] > '9') {
if (index != i) {
stk_int[++top_int] = atoi(&s[index]);
}
index = i + 1;
bool flag = false;
while (flag == false) {
if (judge(s[i], top_str)) {
stk_str[++top_str] = s[i];
if (top_str == '(') stk_str[++top_str] = '#';
if (top_str == ')') {
top_str--;
while (top_str != '#' && top_str != '(') {
stk_int[top_int - 1] = calculation(stk_int[top_int], stk_int[top_int - 1], stk_str[top_str--]);
top_int--;
}
top_str--;
}
flag = true;
} else {
stk_int[top_int - 1] = calculation(stk_int[top_int], stk_int[top_int - 1], stk_str[top_str--]);
top_int--;
}
}
}
if (index != strlen(s) && i == strlen(s) - 1) {
stk_int[++top_int] = atoi(&s[index]);
}
}
while (top_int >= 0 && top_str != '#') {
stk_int[top_int - 1] = calculation(stk_int[top_int], stk_int[top_int - 1], stk_str[top_str--]);
top_int--;
}
printf("%d\n", stk_int[top_int--]);
return 0;
}
```
需要注意的是,Java 代码中使用了 Scanner 类来接收用户的输入,在 C 语言中需要使用 fgets 函数。此外,Java 中的 Stack 类可以使用数组来实现栈的功能。需要注意的是,C 语言中数组下标从 0 开始计数,而 Java 中数组下标从 1 开始计数,因此在转换过程中需要进行相应的调整。
阅读全文