Horje
java code to python converter online Code Example
java code to python converter online
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;

public class Morse {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        try (PrintWriter saida = new PrintWriter("morse.out")) {
            BufferedReader entrada;

            entrada = new BufferedReader(new FileReader("morse.in"));

            String linha;
            String morse[] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....",
                "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.",
                "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."};

            while ((linha = entrada.readLine()) != null) {
                String temp[] = linha.split(" ");
                int cont;
                String palavra = "";
                for (String t : temp) {
                    cont = 0;
                    for (String p : morse) {
                        if (t.equals(p)) {
                            palavra += (char) (65 + cont);
                            break;
                        }
                        cont++;
                    }
                }
                saida.println(palavra);
                if (linha.equals("..-. .. --")) {
                    break;
                }
            }
            entrada.close();
            saida.close();
        }
    }
}
java code to python converter online
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;

public class Morse {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        try (PrintWriter saida = new PrintWriter("morse.out")) {
            BufferedReader entrada;

            entrada = new BufferedReader(new FileReader("morse.in"));

            String linha;
            String morse[] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....",
                "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.",
                "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."};

            while ((linha = entrada.readLine()) != null) {
                String temp[] = linha.split(" ");
                int cont;
                String palavra = "";
                for (String t : temp) {
                    cont = 0;
                    for (String p : morse) {
                        if (t.equals(p)) {
                            palavra += (char) (65 + cont);
                            break;
                        }
                        cont++;
                    }
                }
                saida.println(palavra);
                if (linha.equals("..-. .. --")) {
                    break;
                }
            }
            entrada.close();
            saida.close();
        }
    }
}





Java

Related
android open app info programmatically Code Example android open app info programmatically Code Example
Which package contains the Math classin java? Code Example Which package contains the Math classin java? Code Example
how to create sequential number variable in java Code Example how to create sequential number variable in java Code Example
java equals on recursive apache commons Code Example java equals on recursive apache commons Code Example
array buffer Code Example array buffer Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9