溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java實(shí)現(xiàn)背單詞程序

發(fā)布時(shí)間:2020-09-04 14:47:42 來(lái)源:腳本之家 閱讀:288 作者:韓韓的博客 欄目:編程語(yǔ)言

本文實(shí)例為大家分享了java實(shí)現(xiàn)背單詞程序的具體代碼,供大家參考,具體內(nèi)容如下

山東科技大學(xué)濟(jì)南校區(qū)程序設(shè)計(jì)

功能要求:可以讀入一個(gè)單詞表文本文件, 能夠?qū)⒈冲e(cuò)的單詞重復(fù)記憶,直到全記住。

package java課程設(shè)計(jì);
import java.io.*;
import java.util.*;

public class word14T {
 public static void main(String[] args) {
 // TODO Auto-generated method stub
 File file=new File("word.txt");
 //File file1=new File("wrong.txt");
 TestWord test=new TestWord();
 test.setFile(file);//類調(diào)用setfile方法
 test.setStopTime(5);//設(shè)置中間的暫停時(shí)間
 test.startTest();
 }
}
class TestWord
{
 File file; 
 int stopTime;
 public void setFile(File f)
 {
 file=f;
 }
 public void setStopTime(int t)
 {
 stopTime=t;
 }
 public void startTest()
 {
 Scanner sc=null;

 Scanner read=new Scanner(System.in);
 try
 {


  sc=new Scanner(file);
  while(sc.hasNext())
  {

  String word=sc.next();
  System.out.println(word);//顯示要背的單詞
  System.out.println("給"+stopTime+"秒背單詞的時(shí)間");
  Thread.sleep(stopTime*1000);//使程序休眠一段時(shí)間來(lái)背誦單詞
  System.out.println("\r");
  for(int i=1;i<=50;i++)
  {
   System.out.println("*");
  }//將前面的內(nèi)容覆蓋
  System.out.println("輸入曾經(jīng)顯示的單詞");
  String input=read.nextLine();//將單詞讀入input中
  if(input.equals(word))
  {
   System.out.println("單詞正確");//匹配兩個(gè)單詞是否相同
  }
  else
  {
   while(true)//將背錯(cuò)的程序放在死循環(huán)中,如果正確則跳出
   { System.out.println("單詞背錯(cuò)了,繼續(xù)背該單詞");
   System.out.println(word);
   FileWriter intwo=new FileWriter("wrong.txt");
   BufferedWriter tofile=new BufferedWriter(intwo);
   BufferedWriter out=new BufferedWriter(tofile);
   out.write(word);
   System.out.println("給"+stopTime+"秒背單詞的時(shí)間");
   Thread.sleep(stopTime*1000);
   System.out.println("\r");
   for(int i=1;i<=50;i++)
   {
   System.out.println("*");
   }
   System.out.println("輸入曾經(jīng)顯示的單詞");
   input=read.nextLine();
   if(input.equals(word))
   {
   System.out.println("單詞正確");
   break;
   }
  }
  }
  }
 }
 catch(Exception exp)
 {
  System.out.println(exp);
 }
 }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI