初学java有道题目请求高手给予源代码,在线等
题目如下:通过键盘输入5个学生的基本信息(包括姓名,学号,成绩),统计学生总分,平均分,并将学生的基本信息和计算结果保存到student.txt文件中。大家互相学习交流,...
题目如下:
通过键盘输入5个学生的基本信息(包括姓名,学号,成绩),统计学生总分,平均分,并将学生的基本信息和计算结果保存到 student.txt文件中。
大家互相学习交流,多谢!
帮忙写一下啊,摆脱了 展开
通过键盘输入5个学生的基本信息(包括姓名,学号,成绩),统计学生总分,平均分,并将学生的基本信息和计算结果保存到 student.txt文件中。
大家互相学习交流,多谢!
帮忙写一下啊,摆脱了 展开
展开全部
import java.util.*;
import java.io.*;
public class ScoreCount
{
public static void main(String[] args) throws IOException
{
String path = "d:\\student.txt";
OutputStream os = new FileOutputStream(path);
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os));
Scanner sc = new Scanner(System.in);
float total = 0.0f;
for(int i = 0; i < 5; i++){
System.out.print((i + 1) + ".姓名:");
String name = sc.nextLine();
System.out.print((i + 1) + ".学号:");
String number = sc.nextLine();
System.out.print((i + 1) + ".成绩:");
float score = sc.nextFloat();
sc.nextLine();
total += score;
writer.write(name + "," + number + "," + score + "\r\n");
}
float avg = total / 5;
writer.write("总分:" + total + "\r\n平均:" + avg);
writer.close();
System.out.println("文件已保存至 " + path);
}
}
import java.io.*;
public class ScoreCount
{
public static void main(String[] args) throws IOException
{
String path = "d:\\student.txt";
OutputStream os = new FileOutputStream(path);
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os));
Scanner sc = new Scanner(System.in);
float total = 0.0f;
for(int i = 0; i < 5; i++){
System.out.print((i + 1) + ".姓名:");
String name = sc.nextLine();
System.out.print((i + 1) + ".学号:");
String number = sc.nextLine();
System.out.print((i + 1) + ".成绩:");
float score = sc.nextFloat();
sc.nextLine();
total += score;
writer.write(name + "," + number + "," + score + "\r\n");
}
float avg = total / 5;
writer.write("总分:" + total + "\r\n平均:" + avg);
writer.close();
System.out.println("文件已保存至 " + path);
}
}
展开全部
就是用I/O流,不好意思,我懒的写。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以下程序经编译运行成功
-----------------------------------------------
import java.io.*;
import java.util.*;
public class Chengji{
public static void main(String args[]){
int i=0;
int sum=0,ave=0;
try {
String[][]str = new String[5][3];
Scanner s = new Scanner(System.in);
for( i=0;i<5;i++){
for(int j=0;j<3;j++){
switch(j){
case 0:System.out.print("请输入第"+(i+1)+"个学生的信息(以空格分隔):"+"\t");//break;
}
str[i][j]=s.next();
}
}
for(int k=0;k<3;k++){
sum+=Integer.parseInt(str[k][2]);
}
ave=sum/5;
PrintWriter out = new PrintWriter(new FileWriter("student.txt"));
for( i=0;i<5;i++)
for(int j=0;j<2;j++){
out.print(str[i][j]+"\t");
if(j==1)
out.println("");
}
out.print("平均分是:"+ave);
out.close();
} catch(Exception e ) {
e.printStackTrace();
}
}
}
-----------------------------------------------
import java.io.*;
import java.util.*;
public class Chengji{
public static void main(String args[]){
int i=0;
int sum=0,ave=0;
try {
String[][]str = new String[5][3];
Scanner s = new Scanner(System.in);
for( i=0;i<5;i++){
for(int j=0;j<3;j++){
switch(j){
case 0:System.out.print("请输入第"+(i+1)+"个学生的信息(以空格分隔):"+"\t");//break;
}
str[i][j]=s.next();
}
}
for(int k=0;k<3;k++){
sum+=Integer.parseInt(str[k][2]);
}
ave=sum/5;
PrintWriter out = new PrintWriter(new FileWriter("student.txt"));
for( i=0;i<5;i++)
for(int j=0;j<2;j++){
out.print(str[i][j]+"\t");
if(j==1)
out.println("");
}
out.print("平均分是:"+ave);
out.close();
} catch(Exception e ) {
e.printStackTrace();
}
}
}
参考资料: 原创
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询