ZOJ2971 Give Me the Number java

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2971

中文大意

       将英文表示的数字翻译成阿拉伯数字。

核心思路

    从前到后进行判断,遇到million ,thousand ,hundred乘以他们代表的值的大小。

代码:

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		String[] a={"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine",  
				"ten", "eleven","twelve", "thirteen","fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen",   
				"twenty", "thirty", "forty","fifty", "sixty", "seventy", "eighty","ninety"};
		
		int[] b={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,30,40,50,60,70,80,90};
		while(sc.hasNext())
		{
			int t=sc.nextInt();
			sc.nextLine();
			while(t-->0)
			{
				String str=sc.nextLine();
				String s[]=str.split(" ");
				int x = 0;
				int sum=0;
				for(int i=0;i<s.length;i++)
				{
					if(s[i].equals("and"))
					{
						continue;
					}
					if(s[i].equals("million"))
					{
						sum*=1000000;
						x+=sum;
						sum=0;
					}
					else if(s[i].equals("thousand"))
					{
						sum*=1000;
						x+=sum;
						sum=0;
					}
					else if(s[i].equals("hundred"))
					{
						sum*=100;
					}
					else
					{
						for(int j=0;j<a.length;j++)
						{
							if(s[i].equals(a[j]))
							{
								sum+=b[j];
								break;
							}
						}
					}
				}
				x+=sum;
				System.out.println(x);
			}
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值