Spec Counting in Lojban, an artificial language developed over the last forty years, is easier than in most languages. The numbers from zero to nine are:

          0          no                    
          1          pa                    
          2          re                    
          3          ci
          4          vo                    
          5          mu                   
          6          xa                    
          7          ze
          8          bi                     
          9          so

Larger numbers are created by gluing the digits together. For example, 123 is pareci.

(a) Write a program that reads in a Lojban string (representing a number less than or equal to 100) and outputs it in numbers.

(b) Amend your program so that it reads in a number and outputs the Lojban.

(c) Amend your program so that it allows you to read in 2 numbers and outputs the total in Lojban

link|improve this question
3  
Have you tried to do this yet? – Steve O'Connor Nov 16 '11 at 11:17
recently there are more and more homework question in stackoverflow which is in poor quality like this one. How come?... – Adrian Shum Nov 16 '11 at 11:21
1  
Please don't just post us your homework - instead please tell us where you stuck exactly. It seems pretty solveable and I could write the solution down, but whats the point if we do your homework. – Philipp Wendt Nov 16 '11 at 11:23
1  
@AdrianShum - I suspect StackOverFlow is ranking high in google search results. For e.g. google.co.uk/search?hl=en&q=help+with+java+homework lists StackOverflow – mcfinnigan Nov 16 '11 at 11:33
1  
@user1049511 Please update your post to reflect your change, simply dumping unindented code in comment is simply not helping! – Adrian Shum Nov 16 '11 at 11:44
show 5 more comments
feedback

3 Answers

I will say how to do this generally (not the actual code. If you want the actual code, put a comment).

(a)

  1. Initialize a final static HashMap with the key value-pairs in the form number-Lojban string.
  2. Read the input and assign it to a String.
  3. Break the string to an String array starting from the left and go 2 characters by 2 characters.
  4. For each String in the String array, get the corresponding key from the HashMap (remember that the actual number is the key and Lojban string is the value).
  5. "Glue" the numbers into one String and print (or whatever) it.

(b)

  1. Do the above thing for all the lines in the input. (Use a for-each or while loop).

(c)

  1. Read in the 2 numbers.
  2. Calculate the total.
  3. Get the corresponding value for each of the digits from the HashMap declared in (a) above.
link|improve this answer
feedback

Create an array of the digits so that array[number] = number-in-lojban :

String digits = {"no", "pa", ..., "so"}

Then to convert a digit to lojban do : digits[digit].

To convert the other way around, iterate on the array until the value is your lojban number, your digit conversion is the index it was found at.

You will need to process digit by digit. One way to do that is to use the string representation of your number, then convert it to a char array with toCharArray() And iterate on the chars.

link|improve this answer
feedback
package com.test2;

import java.util.HashMap;
import java.util.Scanner;

public class HashMapDemo1
{

public static void f(String s, HashMap<Integer, String> hashMap)
     {
    StringBuilder sb = new StringBuilder();
    char[] array = s.toCharArray();
    for (int i = 0; i < array.length; i++)
              {
                  sb.append(hashMap.get(Integer.parseInt(Character.toString(array[i]))));
         }
    System.out.println(sb.toString());
}

public static void main(String[] args)
     {
    Scanner s = new Scanner(System.in);
    HashMap<Integer, String> hashMap = new HashMap<Integer, String>();
    hashMap.put(0, "no");
    hashMap.put(1, "pa");
    hashMap.put(2, "re");
    hashMap.put(3, "ci");
    hashMap.put(4, "vo");
    hashMap.put(5, "mu");
    hashMap.put(6, "xa");
    hashMap.put(7, "ze");
    hashMap.put(8, "bi");
    hashMap.put(9, "so");

    String str = s.nextLine();
    f(str, hashMap);
     }
}

Hi, I have figured it out and the answer is here, it works well. Just to make a hashmap to store the numbers as keys and characters as values. Use scanner object to parse the input string, then convert the string to char array, then convert char to string for that, it can be parsed into integer number so that the hashmap can get the value by key number. At last, append every part of result string together you can see what you want. I am new here and talking for the first time. My skype name is landscape.chen. If you want research it deeper, contact with me. Thanks!

link|improve this answer
2  
Do not spoon feed, this does not help the OP – Woot4Moo Nov 16 '11 at 16:01
I like how the question asker has not even accepted this as an answer. – rana Nov 30 '11 at 21:09
Everyone who evaluates the answer can run the code in compiler, then comment my answer, I think it's good for giving useful comments. I ran my code before posted on and I'm sure it can answer and the question. – Aaron Chen Dec 20 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.