a[j]%=10; }
for(int j=0;j<=1;j++) {
temp = a[j]; a[j] = a[3-j]; a[3-j] =temp; }
System.out.print(\加密后的数字为:\for(int j=0;j<4;j++) System.out.print(a[j]); } }
【程序49】
题目:计算字符串中子串出现的次数 import java.util.*;
public class lianxi49 {
public static void main(String args[]){ Scanner s = new Scanner(System.in);
System.out.print(\请输入字符串:\ String str1 = s.nextLine();
System.out.print(\请输入子串:\ String str2 = s.nextLine(); int count=0;
if(str1.equals(\ {
System.out.println(\你没有输入字符串或子串,无法比较!\ System.exit(0); } else {
for(int i=0;i<=str1.length()-str2.length();i++) {
if(str2.equals(str1.substring(i, str2.length()+i))) //这种比法有问题,会把\看成有2个\子串。 count++; }
System.out.println(\子串在字符串中出现: \次\} } }
【程序50】
题目:有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,把原有的数据和计算出的平均分数存放在磁盘文件 \
\中。
import java.io.*; import java.util.*;
public class lianxi50 {
public static void main(String[] args){ Scanner ss = new Scanner(System.in); String [][] a = new String[5][6]; for(int i=1; i<6; i++) {
System.out.print(\请输入第\个学生的学号:\ a[i-1][0] = ss.nextLine();
System.out.print(\请输入第\个学生的姓名:\ a[i-1][1] = ss.nextLine(); for(int j=1; j<4; j++) {
System.out.print(\请输入该学生的第\个成绩:\ a[i-1][j+1] = ss.nextLine(); }
System.out.println(\ }
//以下计算平均分 float avg; int sum;
for(int i=0; i<5; i++) { sum=0;
for(int j=2; j<5; j++) {
sum=sum+ Integer.parseInt(a[i][j]); }
avg= (float)sum/3;
a[i][5]=String.valueOf(avg); }
//以下写磁盘文件 String s1; try {
File f = new File(\ if(f.exists()){
System.out.println(\文件存在\ }else{
System.out.println(\文件不存在,正在创建文件\ f.createNewFile();//不存在则创建 }
BufferedWriter output = new BufferedWriter(new FileWriter(f)); for(int i=0; i<5; i++) { for(int j=0; j<6; j++) { s1=a[i][j]+\
output.write(s1);
} }
output.close();
System.out.println(\数据已写入c盘文件stud中!\ } catch (Exception e) { e.printStackTrace(); } } }