作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是编程新手。我的老师给了我一个关于数基的特殊项目。
由于较高的数字基数是整数和字母的组合,因此我仍然很困惑是否应该使用 int
和/或 char
。
import java.util.Scanner;
public class JavaProgram {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter the base you want to convert and base to be converted: ");
int firstBase = in.nextInt();
int secondBase = in.nextInt();
switch(firstBase) {
case 2:
System.out.print("Enter value: ");
// I get confused here already
case 3:
case 4:
case 5:
case 8:
case 10:
case 12:
case 16:
case 20:
case 24:
case 26:
case 27:
case 30:
case 32:
case 36:
}
in.close();
}
}
最佳答案
如果您想存储数字和字母,则可以使用 char
,因为从技术上讲,字母和数字都是字符。或者,您可以使用String
,它可以存储从单个字符到完整段落的任何内容。
关于java - 如果要求用户输入整数和字母,应使用什么数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45829969/
我是一名优秀的程序员,十分优秀!