Java编程!键盘输入一段英文语句,将这段话写入文件file.txt中,然后统计并输出这段话中英文单词的数目。
键盘输入一段英文语句,将这段话写入文件file.txt中,然后统计并输出这段话中英文单词的数目。...
键盘输入一段英文语句,将这段话写入文件file.txt中,然后统计并输出这段话中英文单词的数目。
展开
2个回答
展开全部
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) throws Exception{
Scanner san = new Scanner(System.in);
System.out.println("Input the text:");
String strText = san.nextLine();
String[] strArr = strText.split(" ");
File file = new File("file.txt");
FileWriter input = new FileWriter(file);
input.write(strText);
input.close();
System.out.println("单词的数目" + strArr.length);
}
}
import java.io.FileInputStream;
import java.io.FileWriter;
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) throws Exception{
Scanner san = new Scanner(System.in);
System.out.println("Input the text:");
String strText = san.nextLine();
String[] strArr = strText.split(" ");
File file = new File("file.txt");
FileWriter input = new FileWriter(file);
input.write(strText);
input.close();
System.out.println("单词的数目" + strArr.length);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询