WOJ-Problem 1003- birth of Noal

从本文中可以看到c语言版本与c++版本的不同之处:(针对于字符串的处理)


C语言版本:http://blog.csdn.net/laneige/article/details/8669726


#include<stdio.h>
#include<stdlib.h>
#include<string.h> 

int main() 
{  
    char *a[13]={"Adam","Seth","Enosh","Kenan","Mahalalel",
                    "Jared","Enoch","Methuselah","Lamech","Noah",
                    "Shem","Ham","Japheth"}; 
    int b[13]={1,2,3,4,5,
              6,7,8,9,10,
              11,11,11}; 
    int c[9]={930,912,905,910,895,
              962,365,969,777};
    char str1[100],str2[100];
    while(scanf("%s%s",str1,str2)!=EOF)
    { 
    int i=0,j=0;
    int x,y; 
    x = 0;y = 0; 
    for(i=0;i<13;i++)
        { 
             if(!strcmp(a[i],str1))
             x=i;
        } 
    for(j=0;j<13;j++)
        {
            if(!strcmp(a[j],str2))
            y=j;
        }
 
        if(b[x]<b[y])  printf("Yes\n");  
        else printf("No\n");
        
    if(x>8||y>8) printf("No enough information\n"); 
    else 
    {
        if(c[x]>c[y]) printf("Yes\n"); 
        else printf("No\n"); 
    }
    
        } 
    //system("pause");
    return 0;
} 


C++版本:

#include<stdio.h>
#include<iostream>
#include<stdlib.h>
#include<string.h> 
#include<string>
using namespace std;

int main()
{
	char *name[13] = { "Adam", "Seth", "Enosh", "Kenan", "Mahalalel",
		"Jared", "Enoch", "Methuselah", "Lamech", "Noah",
		"Shem", "Ham", "Japheth" };
	int birth[13] = { 1, 2, 3, 4, 5,
		6, 7, 8, 9, 10,
		11, 11, 11 };
	int year[9] = { 930, 912, 905, 910, 895,
		962, 365, 969, 777 };
	//char str1[100], str2[100];
	string str1, str2;
	while (cin>>str1>>str2)
	{
		int i = 0, j = 0;
		int x, y;
		x = 0; y = 0;
		for (i = 0; i<13; i++)
		{
			if (name[i]==str1)
				x = i;
		}
		for (j = 0; j<13; j++)
		{
			if (name[j]==str2)
				y = j;
		}

		if (birth[x]<birth[y])  printf("Yes\n");
		else printf("No\n");

		if (x>8 || y>8) printf("No enough information\n");
		else
		{
			if (year[x]>year[y]) printf("Yes\n");
			else printf("No\n");
		}

	}
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值