最新回答 / 慕运维6316890
在计算机里存储数据是以字节为单位的,并且各种数据类型占用的字节数不一样,比如int型数据的存储就需要4个字节,最常用的字节是八位的字节,即它包含八位的二进制数。
2020-02-11
最赞回答 / 幕布斯6003892
while(num != 0){ // num为0时退出num/=10; // 999/10=99 99/10=9 9/10=0(之后判断为0则退出)count++; // count=1 count=2 count=3
2020-02-11
public class HelloWorld {
public static void main(String[] args) {
int score = 94;
String sex = "女";
if (score>80) {
if (sex.equals("女")) {
System.out.println("进入女子组决赛");
}else {
System.out.println("进入男子组决赛");
}
}else {
System.out.println("成绩不支持进入决赛");
}
}
}
public static void main(String[] args) {
int score = 94;
String sex = "女";
if (score>80) {
if (sex.equals("女")) {
System.out.println("进入女子组决赛");
}else {
System.out.println("进入男子组决赛");
}
}else {
System.out.println("成绩不支持进入决赛");
}
}
}
2020-02-10