Series Of Errors From English To Morse Code Translator
Jul 26, 2014
So I've been writing a program that converts user input from English to Morse Code and vice versa.
Here's my code:
public class Project1 {
private final static String [] English = { "a","b","c","d","e","f","g","h","i","j","k","l", "m","n","o","p", "q","r","s","t","u","v","w","x","y","z", " ","1","2","3","4","5","6","7","8","9","0"};
private final static String [] Morse = { ".-", "-...", "-.-/>/>/>/>.", "-..", ".", "..-.", "--.", "....", "..",".---", "-.-/>/>/>/>", ".-..", "--", "-.", "---", ".--.", "--.-/>/>/>/>", ".-.", "...", "-","..-","...-" , ".--" ,"-..-","-.-/>/>/>/>-", "--..", "|", ".----", "..---", "...--", "....-", ".....", "-....","--...","---..", "----.", "-----" };
public static void main( String [] args ) {
int n = Input.getInt( "Enter 1 for Morse to English, 2 for English to Morse." );
switch ( n ) {
[Code] ....
When I compile my program, I get the error message: "illegal start of expression" at my toEnglish and toMorse methods, as well as " ';' expected " at the same place.
View Replies
ADVERTISEMENT
Aug 25, 2014
I'm having some trouble with getting this program to read an input of morse code and then produce an output of English. When typing in morse code for the phrase 'the string', the output looks something like this:
- .... .
t
h
... - .-. .. -. --.
s
t
r
i
n
The English-->Morse works just fine.
import java.util.Scanner;
public class project1
{
static final String[] alpha = {
"a", "b", "c", "d", "e", "f", "g", "h", "i",
"j", "k", "l", "m", "n", "o", "p", "q", "r",
"s", "t", "u", "v", "w", "x", "y", "z", " "
[Code] .....
View Replies
View Related
Aug 23, 2014
I am trying to make a translator program that will convert english to my custom binary. It works going from english to binary, but not going from binary to english.
import java.util.Scanner;
public class Translator
{
public static void main ( String [] args ) {
Scanner input = new Scanner( System.in );
System.out.print( "Would you like to convert English to Binary (yes or no)? " );
String answer = input.nextLine();
[Code] .....
View Replies
View Related
Jul 24, 2014
I'm currently working on a program that is supposed to translate morse code and then display the result and I'm stuck, my program has tons of errors when I try to compile.
public class Assignment10
{
public static void main ( String [] args )
{
String str = Input.getString("Please type in a word");
char [] letters = {'a','b','c','d','e','f','g',
[Code] .....
View Replies
View Related
Aug 26, 2014
I'm making a program that can read an input of English or Morse code and return an output of Morse code or English back. The English-->Morse works fine, but not Morse-->English. I'm pretty sure my solution lies in displaying the variable 'morseWord', but no matter where I put it, I always get an error saying the variable has not been initialized. Here's what it looks like now:
import java.util.Scanner;
public class pro1
{
static final String[] alpha = {"a", "b", "c", "d", "e", "f", "g", "h", "i",
"j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",
"v", "w", "x", "y", "z", " "};
static final String[] morse = {".-", "-...", "-.-/>/>.", "-..", ".", "..-.", "--.", "....", "..",
".---", "-.-/>/>", ".-..", "--", "-.", "---", ".--.", "--.-/>/>", ".-.", "...", "-", "..-",
"...-" ,".--" ,"-..-", "-.-/>/>-", "--..", " | "};
[Code] .....
View Replies
View Related
Jan 6, 2014
I have some software I need to write. I am planning to write two apps for Android, one of which will send and receive Morse code, and the other to send and receive PSK31 data.
Programming is not my strong point, and I am currently struggling on how to do this. I have researched the software, and I am having a hard time finding out how to decode the audio streams on Android. I have also had difficulty finding examples and source code as what I have found is mostly written in C/C++, whereas I need examples in Java.
View Replies
View Related
Apr 5, 2015
Getting the following error at line 13.
Multiple markers at this line - void is an invalid type for the variable loadDictionaryFromFile - Syntax error on token ")", ; expected - Syntax error on token "(", ; expected
Line 13 starts public void load....
Code:
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class PirateTranslator
{
public static void main(String[] args)
[Code] .....
View Replies
View Related
Oct 21, 2014
any method or common algorithm to change a number taken from input to the word for that number? Such as input being "4", output would be "four", at least up to 59 as the larger program I'm trying to make involves time
View Replies
View Related
Jul 28, 2014
i have a jsp page which contains two text areas inside two separate form tags. i want to submit unicode date in one textarea and display it in another. But nothing is working for me. i have to show basically all Indian Languages and english as well. here is the code of it
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ page pageEncoding="UTF-8" %>
<%@ page language="java" %>
[Code]....
View Replies
View Related
Oct 30, 2014
Below is my code
<%--
Document : closeAc
--%>
<%@page import="javax.swing.JOptionPane"%>
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" import="java.sql.*, java.util.Date;"%>
<%
try {
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
[code]....
All I'm trying to do is to search the data from the database and is doesn't show up!
View Replies
View Related
Oct 16, 2014
java api that convert speech to text but complete english not predifined words only.
View Replies
View Related
Jan 12, 2014
Below is part Two the method I need creating:
This method updates the sequence of stars according to the actual English word and the guess character.
public static String updateSecretWord(String secretWord, String englishWord, String guessedChar)
{
}
Below is the example of how it should look like when I call it
updateSecretWord(“*****”, “Hello”, “h”) = h****
updateSecretWord(“h****”, “Hello”, “o”) = h***o
updateSecretWord(“he**o”, “Hello”, “e”) = he**o
View Replies
View Related
Apr 5, 2015
I am making a java program that translates English into Pirate. I need working with the Word Pair class. I'm not sure what needs to be passed to the default constructor. And how to do the method that will take the words and pair them. here is my code and the dictionary file
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class PirateTranslator {
public static void main(String[] args)
[Code] .....
View Replies
View Related
Jun 24, 2014
Environment: Windows7
Tools: Dreamweaver CS6
Level: Novice
Introduction: There is a glossary table of English and French words. The glossary table has duplicate rows and is out of order. I would like to remove the duplicates and sort them by the English column.
1. Open the glossary.html file in your browser, you will see a table on the left with an English column and a French column. On the right hand side of the screen you will see the unit test results. As you complete each TODO the unit tests will pass.
2. There are five areas marked TODO in the glossary.html file,
complete all of the TODOs. Check that all of the unit tests pass. This test project uses the following frameworks:
* BackBone.js - [URL] ...
* Underscore.js - [URL] ...
* jQuery - [URL] ...
* Bootstrap - [URL] ...
The following link will take you to source code : [URL] ...
View Replies
View Related
Jun 20, 2014
I have given a series like this..
10+13+16+19+....+50;
Now I've to find the summation for this. I did it like following bt its not correct..
public static void main(String[] args){
int i=0,k=10, sum=0;
k=k+2;
for(i=10;i<=50;i++){
sum=sum+k;
}
System.out.println(" "+sum);
}
View Replies
View Related
Nov 1, 2014
how to find the sum of the following series
f(x)= 1+3+5+.......+2n+1
this what I did
Java Code: for ( n=0;x>0 && x<2*n+1;n++)
{
sum=sum+2*n+1;
n++;
System.out.println(sum); mh_sh_highlight_all('java');
Is it infinite loop?
is this correct ?
View Replies
View Related
Jun 8, 2014
My project is writing a program that generates a series of numbers to appear like a social security number (XXX-XX-XXXX). My code runs.. But any number below 10 it just shows one number (XXX-X-XXXX). What do I need to enter in to my code so that if the number is <10 it will show (00,01,02,03....)?
Java Code:
import java.util.Random;
public class IDnumber
{
public static void main (String[] args) {
Random generator = new Random()
int num1 = (generator.nextInt(7) + 1) * 100 + (generator.nextInt(8) * 10) + generator.nextInt(8);
int num2 = generator.nextInt(74);
int num3 = generator.nextInt(10000);
String IDnumber = num1 + "-" + num2 + "-" + num3;
System.out.println(IDnumber);
}
} mh_sh_highlight_all('java');
View Replies
View Related
Jun 18, 2014
Write a program called ComputePi to compute the value of pi using the following series expansion. you have to decide on the termination criterion used in the computation(such as number of terms used or the magnitude of an additional term). Is this series suitable for compute pi?
PI=4*(1-(1/3)+(1/5)-(1/7)+(1/9)-(1/11)+(1/13)-(1/15)+.......)
View Replies
View Related
Jun 11, 2014
How to print 10 numbers in Fibonacci serious aftet given number?
Like 13 21 34...
View Replies
View Related
Oct 27, 2014
write a java program to check divisibility of a series of numbers that a user inputs the starting and ending numbers and also the number to check divisibility with.
The problem I am having is it only checks the first number and doesn't check the rest.
import java.util.Scanner;
public class MyMidTermAssignment
{
public static void main(String[] args) {
int numberInputBeginning,numberInputEnding,divisibleByNumber;
System.out.println("Enter first number of series");
[code]....
View Replies
View Related
Feb 8, 2014
Program to generate Fibonacci series program using java multithreading.
View Replies
View Related
Dec 31, 2014
My code:
public class Fibonacci {
/**
* @param args
*/
public static void main(String[] args) {
int f[]=new int[100];
for(int j=0; j<100;j++){
f[j]=j;
[Code] ....
How can I improve my code?
View Replies
View Related
Sep 5, 2014
I am having trouble compiling my code for a java application that is supposed to print out the infinite series for Pi. Here is my java code:
//a java application that generates the infinite series for Pi, ie 3.14159...=4-4/3+4/5-4/7+4/9
public class Pi{
public static void main(String args[]){
//declare and initialize variables
long counter=1;
double pi;
[Code] ....
Here is the error in my output that results when I attempt to compile my code:
C:UsersanonymousDesktopchapter five exercises for javaPi.java:21: error: variable pi might not have been initialized
total=total+pi;
^
1 error
Tool completed with exit code 1
Why do I need to initialized pi when I already initialized the total?
View Replies
View Related
Nov 10, 2014
So basically, I've been trying to create a for loop that asks the user for a number between 1 and 30, then calculates the total of the series of numbers. For example, if 15 is entered, the calculation should be 1/15+2/14+3/13+...15/1 which would equal approximately 38.1. The problem I'm having is that the code doesn't loop whenever I type a number for some reason, which results in a very incorrect calculation. Here is my code so far:
import java.util.Scanner;
public class HmwLoop {
public static void main(String[] args) {
double sum = 0;
for (double num1 = 1, num2 = 30; num1 <= 30 && num2 >= 1; num1++, num2--)
[Code] .....
View Replies
View Related
Jun 12, 2014
I wrote java program to print fibonacci series till user wants it! But I'm getting this compilation error -
fibo.java:Incompatible types
found:java,lang.String
required:int
n=s.readline();
import java.awt.*;
import java.io.*;
import java.util.*;
class fibo {
public static void main(String args[])throws IOException {
int arr[]=new int[100];
[Code] ......
View Replies
View Related
May 9, 2014
write a program to determine the sum of the following harmonic series for a given value of n:1+1/2+1/3+.............................+1/n the value of n should be given interactively through the keyboard.
View Replies
View Related