永发信息网

java定义一个实数数组用来存放学生成绩

答案:3  悬赏:60  手机版
解决时间 2021-03-21 02:30
  • 提问者网友:辞取
  • 2021-03-20 23:38
import java.util.Scanner;
public class score {


public static void main(String[] args) {

Scanner reader=new Scanner(System.in);
System.out.println("输入用户个数:");
int score=reader.nextInt();
int score1[]=new int[score];
System.out.println("输入用户成绩:");
for(int i=1;i<=score1.length;i++){
double s=reader.nextDouble();

}
System.out.println("输入查找学生");
int n=reader.nextInt();
if(n==score){
System.out.println("第"+score+"学生成绩是:"+score1[score]);
}
}

}
我执行不到最后一步~最后需要询问用户查询结果
最佳答案
  • 五星知识达人网友:廢物販賣機
  • 2021-03-21 00:18
主要是下标做了,记住数组是用0开始,现在调通了
import java.util.Scanner;

public class Admin {

public static void main(String... args) {
Scanner reader = new Scanner(System.in);
System.out.println("输入用户个数:");
int score = reader.nextInt();
double score1[] = new double[score];
System.out.println("输入用户成绩:");
for (int i = 0; i < score1.length; i++) {
double s = reader.nextDouble();
score1[i] = s;
}
System.out.println("输入查找学生");
int n = reader.nextInt();
if (n == score) {
System.out.println("第" + score + "学生成绩是:" + score1[score - 1]);
}
}
}
全部回答
  • 1楼网友:一把行者刀
  • 2021-03-21 03:07
import java.util.Scanner; public class score{ public static void main(String[] args) { Scanner reader=new Scanner(System.in); System.out.println("输入用户个数:"); int score=reader.nextInt(); double score1[]=new double[score]; System.out.println("输入用户成绩:"); for(int i=0;i<score1.length;i++){ double s=reader.nextDouble(); score1[i] = s; } System.out.println("输入查找学生"); int n=reader.nextInt(); System.out.println("第"+n+"学生成绩是:"+score1[n-1]); } } 最后应该是这样吧,要不永远只能查最后一名学生的成绩。
  • 2楼网友:像个废品
  • 2021-03-21 01:48
首先你要明白数组的结构,在c和c++里面,数组就是一块连续的内存,你需要实现声明好,有多大,才可以使用,在java里,数组也是固定打下的,所以必须得声明大小之后,才能使用。你所说的动态数组,只能通过别方法的来实现 例如: public class test{ public static void main(string[] args) { int[] js = new int[10]; for(int i=0; i<100; i++){ if(i
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯