一篇文章讲明白MartianAddition

简介: 一篇文章讲明白MartianAddition

In the 22nd Century, scientists have discovered intelligent residents live on the Mars. Martians are very fond of mathematics. Every year, they would hold an Arithmetic Contest on Mars (ACM). The task of the contest is to calculate the sum of two 100-digit numbers, and the winner is the one who uses least time. This year they also invite people on Earth to join the contest.

As the only delegate of Earth, you're sent to Mars to demonstrate the power of mankind. Fortunately you have taken your laptop computer with you which can help you do the job quickly. Now the remaining problem is only to write a short program to calculate the sum of 2 given numbers. However, before you begin to program, you remember that the Martians use a 20-based number system as they usually have 20 fingers.

Input:

You're given several pairs of Martian numbers, each number on a line.

Martian number consists of digits from 0 to 9, and lower case letters from a to j (lower case letters starting from a to present 10, 11, ..., 19).

The length of the given number is never greater than 100.

Output:

For each pair of numbers, write the sum of the 2 numbers in a single line.

Sample Input:

1234567890

abcdefghij

99999jjjjj

9999900001

Sample Output:

bdfi02467j

iiiij00000

题目意思:二十进制加法运算

。。。。我的代码:

1 #include

2 #include[span style="color: rgba(0, 0, 255, 1)">string.h>

3 int a【200】,b【200】,c【200】;

4 char x【200】,s【200】,t【200】;

5 int main()

6 {

7 int i,j,k,len1,len2,len;

8 while(scanf("%s%s",x,s)!=EOF)

9 {

10 memset(a,0,sizeof(a));

11 memset(b,0,sizeof(b));

12 memset(c,0,sizeof(c));

13 len1=strlen(x);

14 len2=strlen(s);

15 if(len1>len2)

16 len=len1;

17 else

18 len=len2;

19 i=0;

20 for(j=len1-1; j>=0; j--)

21 {

22 if(x【j】<='9'x【j】>='0')

23 a【i++】=x【j】-'0';

24 else

25 a【i++】=x【j】-87;

26 }

27 i=0;

28 for(j=len2-1; j>=0; j--)

29 {

30 if(s【j】<='9's【j】>='0')

31 b【i++】=s【j】-'0';

32 else

33 b【i++】=s【j】-87;

34 }

35 for(i=0; i

36 {

37 c【i】=c【i】+a【i】+b【i】;

38 if(c【i】>19)

39 {

40 c【i+1】=c【i】/20;

41 c【i】=c【i】%20;

42 }

43 }

44 i=len;

45 while(!c【i】)///000001这种情况,0不能输出,将0跳出

46 {

47 i--;

48 if(i==-1)

49 {

50 printf("0");

51 break;

52 }//代码效果参考:http://www.ezhiqi.com/bx/art_4847.html

53 }

54 k=0;

55 for(j=i; j>=0; j--)

56 {

57 if(c【j】>=0c【j】<=9)

58 t【k++】=c【j】+'0';

59 else

60 t【k++】=c【j】+87;

61 }

62 for(j=0; j

63 printf("%c",t【j】);

64 printf("\n");

65

66 }

67 return 0;

68 }

大佬的代码是这样的:

1 #include///学习:可以将要输出的内容写入一个字符数组之中,输出在字符数组中的位置即可

2 int main()

3 {

4 char a【200】,b【200】,s【21】="0123456789abcdefghij";

5 int c【200】,i,j,k,p,q;

6 while(scanf("%s%s",a,b)!=EOF){

7 memset(c,0,sizeof(c));

8 k=0;

9 p=strlen(a);

10 q=strlen(b);

11 j=q-1;

12 for(i=p-1;i>=0||j>=0;i--){

13 if(i>=0){

14 if(a【i】-'a'

15 c【k】+=a【i】-'a'+10;

16 else

17 c【k】+=a【i】-'0';

18 }

19 if(j>=0){

20 if(b【j】-'a'

21 c【k】+=b【j】-'a'+10;

22 else

23 c【k】+=b【j】-'0';

24 }

25 if(c【k】>=20){

26 c【k】%=20;

27 c【k+1】+=1;

28 }

29 j--;

30 k++;

31 }

32 if(c【k】==0)

33 k-=1;

34 for(i=k;i>=0;i--)

35 printf("%c",s【c【i】】);

36 printf("\n");

37 }//代码效果参考:http://www.ezhiqi.com/bx/art_2931.html

38 return 0;

39 }

学习了

上一篇Java数据结构(六)二叉树入门下一篇Java数据结构(七)堆

本文作者:王陸

本文链接:

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

相关文章
|
2天前
|
Java 数据库连接
一篇文章讲明白Erlangpoolmanagement
一篇文章讲明白Erlangpoolmanagement
|
14天前
|
人工智能 数据挖掘 大数据
成为程序员后你都明白了什么?
成为程序员后你都明白了什么?
12 1
|
1天前
|
人工智能 Java BI
一篇文章讲明白MartianAddition
一篇文章讲明白MartianAddition
|
1天前
|
流计算 内存技术
一篇文章讲明白FreescaleKibbletest
一篇文章讲明白FreescaleKibbletest
|
2天前
|
存储 Java API
一篇文章讲明白luauserdata
一篇文章讲明白luauserdata
|
3天前
|
druid 数据库
一篇文章讲明白HearthBuddy卡组
一篇文章讲明白HearthBuddy卡组
|
2天前
|
JSON Java 测试技术
一篇文章讲明白JGit学习
一篇文章讲明白JGit学习
|
1天前
|
消息中间件 Linux API
一篇文章讲明白LinuxKernel编程
一篇文章讲明白LinuxKernel编程
|
2天前
|
容器
一篇文章讲明白Fltk1.3系列教程(3)
一篇文章讲明白Fltk1.3系列教程(3)
|
11月前
编程要搞明白的东西(一)
编程要搞明白的东西(一)
60 0