Package controler

Examples of controler.Manager.correct()


    chaine1 = sc.next();
   
    System.out.println("Enter the word to compare:");
    chaine2 = sc.next();
   
    if(manager.correct(chaine1, chaine2)){
      System.out.println("These words have a close spelling");
    }
    else{
      System.out.println("These words does not have a close spelling");
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.