P1200 [USACO1.1]你的飞碟在这儿Your Ride Is Here

洛谷入门题:

其实这道题用c++写得话大家只需要注意char类型转int类型的方法就可以了。

其他的我不多说了,上个小白代码:

# include 
# include 
using namespace std;
int main(){
	string h,z;cin>>h>>z;
	int n1,n2;
	n1=h.size();
	n2=z.size();
	int ret1=1,ret2=1;
	for(int i=0;i

你可能感兴趣的:(c语言小白,洛谷,入门,c语言,c++)