JAVAC - Java vs C ++

no tags 

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!

hide comments
masterchef2209: 2018-08-24 14:03:02

cpp variables can't have '_' at last apparently, costed 1 WA
@ushould_study's hints are the best

spaceman_spiff: 2018-08-09 19:14:33

Not sure how it is but my first solution without handling numbers in input got accepted. All other submission without it failed. I then updated the code to handle numbers and all subsequent submissions pass.
So, maybe there are different sets that are run and there are sets that do not have no.'s in IP.
*But, to be sure, handle no.'s as well.*

shashankpathak: 2018-07-03 08:56:31

Does the string also contains spaces?? I have considered all cases for invalid indentifier but still WA

kuchnahiaata: 2018-03-20 07:48:48

be careful about multiple underscores!

Last edit: 2018-03-20 15:12:40
nadstratosfer: 2018-01-02 04:36:33

Got AC with the line checking for illegal chars commented out, so either the input is 100% alnum as stated or you can safely ignore those.

ushould_study: 2018-01-01 10:49:52

AC in one go !
comments helped
Hints:
1) starting letter should be small
2) underscore at last
3) multiple underscores
remaining conditions are evident from the test cases given.
Kudos! :-)

Last edit: 2018-01-01 10:50:25
anurag31: 2017-10-29 13:02:41

Spoj Toolkit giving WA on n_e_e_r_c

vinhvo: 2017-07-16 13:03:04

Remember '_' as last character !

shauryauppal: 2017-07-10 18:59:21

Remember identifier cannot start with an underscore or start with capital letter, this costed me one wrong answer.

ashwani0605: 2017-06-30 08:54:10

I think there are no numbers in test cases, there are only underscore and alphabets

Last edit: 2017-06-30 10:01:14

Added by:Camilo Andrés Varela León
Date:2006-12-14
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Northeastern Europe 2006