6-2 数字字符串对齐处理 (10分)

分别输入两个纯数字的字符串,把较短的一个字符串前面填上“0”,使得两个字符串一样长,然后分别输出。

裁判测试程序样例:
在这里给出函数被调用进行测试的例子。例如:

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		String tempa, tempb;
		
		Scanner input = new Scanner(System.in);
		tempa = input.nextLine();
		tempb = input.nextLine();
		int c = Math.max(tempa.length(), tempb.length());
		int[] a = new int[c] ;
		int[] b = new int[c];
		Transform(tempa, tempb, a, b);
		for(int i=0;i<c;i++) {
	          System.out.printf("%d",a[i]);
	      }
		System.out.println();
		for(int i=0;i<c;i++) {
	          System.out.printf("%d",b[i]);
	      }
	}
	
	/* 请在这里填写答案 */
}

输入样例:

在这里给出一组输入。例如:

12345
89

输出样例:

在这里给出相应的输出。例如:

12345
00089

注意:这里已经知道了补全后的数组大小,堆区分配的内存的默认值是0

代码

	static void Transform(String sa, String sb, int[] a, int[] b) {
	
		Transform(sa, a);
		Transform(sb, b);
	}
	static void Transform(String source, int[] output) {
	
		int len = output.length;
		for(int i = source.length() - 1; i >= 0; i--) {
			if(source.charAt(i) >= '0' && source.charAt(i) <= '9') {
				output[--len] = source.charAt(i) - '0';
			}
			else {
				output[--len] = 0;
			}
		}
	}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值