(字符串处理)java & C++(POJ3157)

这种题就是要仔细了,,



#include<iostream>
#include<cstdio>
#include<cstring> 
#include<ctype.h>

using namespace std; 


bool isjava(char *s,int l)
{
	if (isupper(s[0]))
		return false;
	for (int i=0;i<l;i++)
	{
		if (s[i]=='_')
			return false;
	}
	return true;
}

bool iscpp(char *s,int l)
{
	if (s[l-1]=='_'||s[0]=='_')
		return false;
	for (int i=0;i<l;i++)
	{
		if (isupper(s[i]))
			return false;
		if (s[i]=='_'&&s[i+1]=='_')
			return false;
	}
	return true;
}

int main()
{
	freopen("fuck.txt","r",stdin);

	char s[1111];
    while (cin>>s)
	{
	//	cout<<s<<endl;
	int l=strlen(s);
	int java,cpp;
	java=0;
	cpp=0;
	int i;
	/*
	for (i=0;i<l;i++)
	{
		if (isupper(s[i]))
			java++;
		if (s[i]=='_')
			cpp++;
	}
	if (isupper(s[0])||s[n-1]=='_')
		java++,cpp++;*/
	
	if (isjava(s,l))
	{
		//cout<<"jave -> cpp  ";
		for (i=0;i<l;i++)
		{
			if (isupper(s[i]))
			{
				printf("_%c",tolower(s[i]));
				
			}
			else
				printf("%c",s[i]);
		}
	}
	else if (iscpp(s,l))
	{
		//cout<<"cpp -> java    ";
		for (i=0;i<l;i++)
		{
			if (s[i]=='_')
			{
				if (i<l-1)
					printf("%c",toupper(s[++i]));
			}
			else
				printf("%c",s[i]);
		}

	}
	else
	{
		printf("Error!");
	}

	printf("\n");
	}
	return 0;
}

Java vs C++
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 6372 Accepted: 1762

Description

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 one line 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.

Sample Input

sample input #1
long_and_mnemonic_identifier

sample input #2
anotherExample

sample input #3
i

sample input #4
bad_Style

Sample Output

sample output #1
longAndMnemonicIdentifier

sample output #2
another_example

sample output #3
i

sample output #4
Error!

Source




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值