Package controler

Examples of controler.Manager


import controler.Manager;

public class Main {
  public static void main(String[] args){
    Manager manager = new Manager();
    Scanner sc = new Scanner(System.in);
   
    String chaine1 = "";
    String chaine2 = "";
   
    do{
    System.out.println("Enter the first word:");
    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

Related Classes of controler.Manager

Copyright © 2018 www.massapicom. 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.