JAVAC - Java vs C ++
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
subhasmita sahoo:
2016-08-01 08:25:56
How to check end of input? I tried using while (getline(cin,s)) and also while(cin>>s), but no use.. |
|
manas0008:
2016-01-20 18:53:30
Don't waste your time in shortening the code..
|
|
Dushyant Singh:
2015-06-14 08:29:32
are numbers allowerd? Is mc2D valid? |
|
rohit_dhan:
2015-06-11 11:44:27
@Bhuvnesh look at the paragraph properly, nAME and n_a_m_e will be valid a/c to nEERC and n_e_e_r_c |
|
matematikaadit:
2015-03-31 05:10:17
@(Tjandra Satria Gunawan)(ÄÂĹžÄĹťÂ
ÄÂÂ)
|
|
qwerty:
2015-03-28 15:59:20
What about an underscore at the end ?? is it valid c++ identifier or an Error ? |
|
Sapan tanted:
2015-03-27 18:09:53
how many test cases ?
|
|
Daniel Carvalho:
2015-03-06 12:54:13
This problem doesn't follow C++'s naming directives, so assume it's a C++-like language, and generate errors when they shouldn't be generated. |
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 |