Sphere Online Judge

SPOJ Problem Set (classical)

1163. Java vs C ++

Problem code: JAVAC

Apologists of Java and C++ can argue for hours proving each other that their programming language is the best one. Java people will tell that their programs are clearer and less prone to errors, while C++ people will laugh at their inability to instantiate an array of generics or tell them that their programs are slow and have long source code.


Another issue that Java and C++ people could never agree on is identifier naming. In Java a multiword identifier is constructed in the following manner: the first word is written starting from the small letter, and the following ones are written starting from the capital letter, no separators are used. All other letters are small. Examples of a Java identifier are javaIdentifier, longAndMnemonicIdentifier, name, nEERC.


Unlike them, C++ people use only small letters in their identifiers. To separate words they use underscore character ‘_’. Examples of C++ identifiers are c_identifier, long_and_mnemonic_identifier, name (you see that when there is just one word Java and C++ people agree), n_e_e_r_c.


You are writing a translator that is intended to translate C++ programs to Java and vice versa. Of course, identifiers in the translated program must be formatted due to its language rules — otherwise people will never like your translator.


The first thing you would like to write is an identifier translation routine. Given an identifier, it would detect whether it is Java identifier or C++ identifier and translate it to another dialect. If it is neither, then your routine should report an error. Translation must preserve the order of words and must only change the case of letters and/or add/remove underscores.


Input

The input file consists of several lines that contains an identifier. It consists of letters of the English alphabet and underscores. Its length does not exceed 100.


Output

If the input identifier is Java identifier, output its C++ version. If it is C++ identifier, output its Java version. If it is none, output 'Error!' instead.


Example

Input:
long_and_mnemonic_identifier
anotherExample
i
bad_Style

Output:
longAndMnemonicIdentifier
another_example
i
Error!

Added by:Camilo Andrés Varela León
Date:2006-12-14
Time limit:1s
Source limit:50000B
Languages:All except: ERL TECS JS
Resource:Northeastern Europe 2006

hide comments
2010-01-10 10:31:20 maheshwar
@Tinago Reul :the output should be ERROR!
as the variables don't start with capitals in both java & c++
2010-01-09 15:57:09 Tiago Reul
what about Variable?
output is "_variable" or
"Error!"?
2009-10-13 11:25:27 temp
ja__va = Error!
java_ = Error!
_java = Error!
2009-10-10 22:42:20 Randelier Iháñez Reyes(UCI)
I would like to know if this words: ja__va , java_ and _java will be considered as an error or not.

Last edit: 2009-10-12 19:03:06
2009-09-21 19:34:00 VIMAL RAJ SHARMA
whether "addEEven" will be considered as an error or not???????????

Translates into "add_e_even"

Last edit: 2010-01-27 03:24:40
2009-08-24 14:50:51 Abdelrahman Hatem
may somebody write samples of input the their output is Error!
2009-08-06 03:15:14 SmitherS
Bonus challenge: solve this in both Java and C/C++.
Extra bonus challenge: do this as a polyglot (the same file will compile and run (and get AC) in both languages).
2009-06-29 11:32:12 Gordon Freeman (NITian not MITian)
take inputs till EOF is encountered
2009-06-26 07:41:22 Abhishek Mahawar
how many inputs do we need to take?
SPOJ System © 2008-2010 Sphere Research Labs. All Rights Reserved.