大数模版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | #include <iostream> #include <stdio.h> #include <string.h> using namespace std; #define DIGIT 4 //四位隔开,即万进制 #define DEPTH 10000 //万进制 #define MAX 100 //题目最大位数/4,要不大直接设为最大位数也行 typedef int bignum_t[MAX+1]; /************************************************************************/ /* 读取操作数,对操作数进行处理存储在数组里 */ /************************************************************************/ int read(bignum_t a,istream&is=cin) { char buf[MAX*DIGIT+1],ch ; int i,j ; memset (( void *)a,0, sizeof (bignum_t)); if (!(is>>buf)) return 0 ; for (a[0]= strlen (buf),i=a[0]/2-1;i>=0;i--) ch=buf[i],buf[i]=buf[a[0]-1-i],buf[a[0]-1-i]=ch ; for (a[0]=(a[0]+DIGIT-1)/DIGIT,j= strlen (buf);j<a[0]*DIGIT;buf[j++]= '0' ); for (i=1;i<=a[0];i++) for (a[i]=0,j=0;j<DIGIT;j++) a[i]=a[i]*10+buf[i*DIGIT-1-j]- '0' ; for (;!a[a[0]]&&a[0]>1;a[0]--); return 1 ; } void write( const bignum_t a,ostream&os=cout) { int i,j ; for (os<<a[i=a[0]],i--;i;i--) for (j=DEPTH/10;j;j/=10) os<<a[i]/j%10 ; } int comp( const bignum_t a, const bignum_t b) { int i ; if (a[0]!=b[0]) return a[0]-b[0]; for (i=a[0];i;i--) if (a[i]!=b[i]) return a[i]-b[i]; return 0 ; } int comp( const bignum_t a, const int b) { int c[12]= { } ; for (c[1]=b;c[c[0]]>=DEPTH;c[c[0]+1]=c[c[0]]/DEPTH,c[c[0]]%=DEPTH,c[0]++); return comp(a,c); } int comp( const bignum_t a, const int c, const int d, const bignum_t b) { int i,t=0,O=-DEPTH*2 ; if (b[0]-a[0]<d&&c) return 1 ; for (i=b[0];i>d;i--) { t=t*DEPTH+a[i-d]*c-b[i]; if (t>0) return 1 ; if (t<O) return 0 ; } for (i=d;i;i--) { t=t*DEPTH-b[i]; if (t>0) return 1 ; if (t<O) return 0 ; } return t>0 ; } /************************************************************************/ /* 大数与大数相加 */ /************************************************************************/ void add(bignum_t a, const bignum_t b) { int i ; for (i=1;i<=b[0];i++) if ((a[i]+=b[i])>=DEPTH) a[i]-=DEPTH,a[i+1]++; if (b[0]>=a[0]) a[0]=b[0]; else for (;a[i]>=DEPTH&&i<a[0];a[i]-=DEPTH,i++,a[i]++); a[0]+=(a[a[0]+1]>0); } /************************************************************************/ /* 大数与小数相加 */ /************************************************************************/ void add(bignum_t a, const int b) { int i=1 ; for (a[1]+=b;a[i]>=DEPTH&&i<a[0];a[i+1]+=a[i]/DEPTH,a[i]%=DEPTH,i++); for (;a[a[0]]>=DEPTH;a[a[0]+1]=a[a[0]]/DEPTH,a[a[0]]%=DEPTH,a[0]++); } /************************************************************************/ /* 大数相减(被减数>=减数) */ /************************************************************************/ void sub(bignum_t a, const bignum_t b) { int i ; for (i=1;i<=b[0];i++) if ((a[i]-=b[i])<0) a[i+1]--,a[i]+=DEPTH ; for (;a[i]<0;a[i]+=DEPTH,i++,a[i]--); for (;!a[a[0]]&&a[0]>1;a[0]--); } /************************************************************************/ /* 大数减去小数(被减数>=减数) */ /************************************************************************/ void sub(bignum_t a, const int b) { int i=1 ; for (a[1]-=b;a[i]<0;a[i+1]+=(a[i]-DEPTH+1)/DEPTH,a[i]-=(a[i]-DEPTH+1)/DEPTH*DEPTH,i++); for (;!a[a[0]]&&a[0]>1;a[0]--); } void sub(bignum_t a, const bignum_t b, const int c, const int d) { int i,O=b[0]+d ; for (i=1+d;i<=O;i++) if ((a[i]-=b[i-d]*c)<0) a[i+1]+=(a[i]-DEPTH+1)/DEPTH,a[i]-=(a[i]-DEPTH+1)/DEPTH*DEPTH ; for (;a[i]<0;a[i+1]+=(a[i]-DEPTH+1)/DEPTH,a[i]-=(a[i]-DEPTH+1)/DEPTH*DEPTH,i++); for (;!a[a[0]]&&a[0]>1;a[0]--); } /************************************************************************/ /* 大数相乘,读入被乘数a,乘数b,结果保存在c[] */ /************************************************************************/ void mul(bignum_t c, const bignum_t a, const bignum_t b) { int i,j ; memset (( void *)c,0, sizeof (bignum_t)); for (c[0]=a[0]+b[0]-1,i=1;i<=a[0];i++) for (j=1;j<=b[0];j++) if ((c[i+j-1]+=a[i]*b[j])>=DEPTH) c[i+j]+=c[i+j-1]/DEPTH,c[i+j-1]%=DEPTH ; for (c[0]+=(c[c[0]+1]>0);!c[c[0]]&&c[0]>1;c[0]--); } /************************************************************************/ /* 大数乘以小数,读入被乘数a,乘数b,结果保存在被乘数 */ /************************************************************************/ void mul(bignum_t a, const int b) { int i ; for (a[1]*=b,i=2;i<=a[0];i++) { a[i]*=b ; if (a[i-1]>=DEPTH) a[i]+=a[i-1]/DEPTH,a[i-1]%=DEPTH ; } for (;a[a[0]]>=DEPTH;a[a[0]+1]=a[a[0]]/DEPTH,a[a[0]]%=DEPTH,a[0]++); for (;!a[a[0]]&&a[0]>1;a[0]--); } void mul(bignum_t b, const bignum_t a, const int c, const int d) { int i ; memset (( void *)b,0, sizeof (bignum_t)); for (b[0]=a[0]+d,i=d+1;i<=b[0];i++) if ((b[i]+=a[i-d]*c)>=DEPTH) b[i+1]+=b[i]/DEPTH,b[i]%=DEPTH ; for (;b[b[0]+1];b[0]++,b[b[0]+1]=b[b[0]]/DEPTH,b[b[0]]%=DEPTH); for (;!b[b[0]]&&b[0]>1;b[0]--); } /**************************************************************************/ /* 大数相除,读入被除数a,除数b,结果保存在c[]数组 */ /* 需要comp()函数 */ /**************************************************************************/ void div (bignum_t c,bignum_t a, const bignum_t b) { int h,l,m,i ; memset (( void *)c,0, sizeof (bignum_t)); c[0]=(b[0]<a[0]+1)?(a[0]-b[0]+2):1 ; for (i=c[0];i;sub(a,b,c[i]=m,i-1),i--) for (h=DEPTH-1,l=0,m=(h+l+1)>>1;h>l;m=(h+l+1)>>1) if (comp(b,m,i-1,a))h=m-1 ; else l=m ; for (;!c[c[0]]&&c[0]>1;c[0]--); c[0]=c[0]>1?c[0]:1 ; } void div (bignum_t a, const int b, int &c) { int i ; for (c=0,i=a[0];i;c=c*DEPTH+a[i],a[i]=c/b,c%=b,i--); for (;!a[a[0]]&&a[0]>1;a[0]--); } /************************************************************************/ /* 大数平方根,读入大数a,结果保存在b[]数组里 */ /* 需要comp()函数 */ /************************************************************************/ void sqrt (bignum_t b,bignum_t a) { int h,l,m,i ; memset (( void *)b,0, sizeof (bignum_t)); for (i=b[0]=(a[0]+1)>>1;i;sub(a,b,m,i-1),b[i]+=m,i--) for (h=DEPTH-1,l=0,b[i]=m=(h+l+1)>>1;h>l;b[i]=m=(h+l+1)>>1) if (comp(b,m,i-1,a))h=m-1 ; else l=m ; for (;!b[b[0]]&&b[0]>1;b[0]--); for (i=1;i<=b[0];b[i++]>>=1); } /************************************************************************/ /* 返回大数的长度 */ /************************************************************************/ int length( const bignum_t a) { int t,ret ; for (ret=(a[0]-1)*DIGIT,t=a[a[0]];t;t/=10,ret++); return ret>0?ret:1 ; } /************************************************************************/ /* 返回指定位置的数字,从低位开始数到第b位,返回b位上的数 */ /************************************************************************/ int digit( const bignum_t a, const int b) { int i,ret ; for (ret=a[(b-1)/DIGIT+1],i=(b-1)%DIGIT;i;ret/=10,i--); return ret%10 ; } /************************************************************************/ /* 返回大数末尾0的个数 */ /************************************************************************/ int zeronum( const bignum_t a) { int ret,t ; for (ret=0;!a[ret+1];ret++); for (t=a[ret+1],ret*=DIGIT;!(t%10);t/=10,ret++); return ret ; } void comp( int *a, const int l, const int h, const int d) { int i,j,t ; for (i=l;i<=h;i++) for (t=i,j=2;t>1;j++) while (!(t%j)) a[j]+=d,t/=j ; } void convert( int *a, const int h,bignum_t b) { int i,j,t=1 ; memset (b,0, sizeof (bignum_t)); for (b[0]=b[1]=1,i=2;i<=h;i++) if (a[i]) for (j=a[i];j;t*=i,j--) if (t*i>DEPTH) mul(b,t),t=1 ; mul(b,t); } /************************************************************************/ /* 组合数 */ /************************************************************************/ void combination(bignum_t a, int m, int n) { int *t= new int [m+1]; memset (( void *)t,0, sizeof ( int )*(m+1)); comp(t,n+1,m,1); comp(t,2,m-n,-1); convert(t,m,a); delete []t ; } /************************************************************************/ /* 排列数 */ /************************************************************************/ void permutation(bignum_t a, int m, int n) { int i,t=1 ; memset (a,0, sizeof (bignum_t)); a[0]=a[1]=1 ; for (i=m-n+1;i<=m;t*=i++) if (t*i>DEPTH) mul(a,t),t=1 ; mul(a,t); } #define SGN(x) ((x)>0?1:((x)<0?-1:0)) #define ABS(x) ((x)>0?(x):-(x)) int read(bignum_t a, int &sgn,istream&is=cin) { char str[MAX*DIGIT+2],ch,*buf ; int i,j ; memset (( void *)a,0, sizeof (bignum_t)); if (!(is>>str)) return 0 ; buf=str,sgn=1 ; if (*buf== '-' )sgn=-1,buf++; for (a[0]= strlen (buf),i=a[0]/2-1;i>=0;i--) ch=buf[i],buf[i]=buf[a[0]-1-i],buf[a[0]-1-i]=ch ; for (a[0]=(a[0]+DIGIT-1)/DIGIT,j= strlen (buf);j<a[0]*DIGIT;buf[j++]= '0' ); for (i=1;i<=a[0];i++) for (a[i]=0,j=0;j<DIGIT;j++) a[i]=a[i]*10+buf[i*DIGIT-1-j]- '0' ; for (;!a[a[0]]&&a[0]>1;a[0]--); if (a[0]==1&&!a[1])sgn=0 ; return 1 ; } struct bignum { bignum_t num ; int sgn ; public : inline bignum() { memset (num,0, sizeof (bignum_t)); num[0]=1 ; sgn=0 ; } inline int operator!() { return num[0]==1&&!num[1]; } inline bignum&operator=( const bignum&a) { memcpy (num,a.num, sizeof (bignum_t)); sgn=a.sgn ; return * this ; } inline bignum&operator=( const int a) { memset (num,0, sizeof (bignum_t)); num[0]=1 ; sgn=SGN (a); add(num,sgn*a); return * this ; } ; inline bignum&operator+=( const bignum&a) { if (sgn==a.sgn)add(num,a.num); else if (sgn&&a.sgn) { int ret=comp(num,a.num); if (ret>0)sub(num,a.num); else if (ret<0) { bignum_t t ; memcpy (t,num, sizeof (bignum_t)); memcpy (num,a.num, sizeof (bignum_t)); sub (num,t); sgn=a.sgn ; } else memset (num,0, sizeof (bignum_t)),num[0]=1,sgn=0 ; } else if (!sgn) memcpy (num,a.num, sizeof (bignum_t)),sgn=a.sgn ; return * this ; } inline bignum&operator+=( const int a) { if (sgn*a>0)add(num,ABS(a)); else if (sgn&&a) { int ret=comp(num,ABS(a)); if (ret>0)sub(num,ABS(a)); else if (ret<0) { bignum_t t ; memcpy (t,num, sizeof (bignum_t)); memset (num,0, sizeof (bignum_t)); num[0]=1 ; add(num,ABS (a)); sgn=-sgn ; sub(num,t); } else memset (num,0, sizeof (bignum_t)),num[0]=1,sgn=0 ; } else if (!sgn)sgn=SGN(a),add(num,ABS(a)); return * this ; } inline bignum operator+( const bignum&a) { bignum ret ; memcpy (ret.num,num, sizeof (bignum_t)); ret.sgn=sgn ; ret+=a ; return ret ; } inline bignum operator+( const int a) { bignum ret ; memcpy (ret.num,num, sizeof (bignum_t)); ret.sgn=sgn ; ret+=a ; return ret ; } inline bignum&operator-=( const bignum&a) { if (sgn*a.sgn<0)add(num,a.num); else if (sgn&&a.sgn) { int ret=comp(num,a.num); if (ret>0)sub(num,a.num); else if (ret<0) { bignum_t t ; memcpy (t,num, sizeof (bignum_t)); memcpy (num,a.num, sizeof (bignum_t)); sub(num,t); sgn=-sgn ; } else memset (num,0, sizeof (bignum_t)),num[0]=1,sgn=0 ; } else if (!sgn)add (num,a.num),sgn=-a.sgn ; return * this ; } inline bignum&operator-=( const int a) { if (sgn*a<0)add(num,ABS(a)); else if (sgn&&a) { int ret=comp(num,ABS(a)); if (ret>0)sub(num,ABS(a)); else if (ret<0) { bignum_t t ; memcpy (t,num, sizeof (bignum_t)); memset (num,0, sizeof (bignum_t)); num[0]=1 ; add(num,ABS(a)); sub(num,t); sgn=-sgn ; } else memset (num,0, sizeof (bignum_t)),num[0]=1,sgn=0 ; } else if (!sgn)sgn=-SGN(a),add(num,ABS(a)); return * this ; } inline bignum operator-( const bignum&a) { bignum ret ; memcpy (ret.num,num, sizeof (bignum_t)); ret.sgn=sgn ; ret-=a ; return ret ; } inline bignum operator-( const int a) { bignum ret ; memcpy (ret.num,num, sizeof (bignum_t)); ret.sgn=sgn ; ret-=a ; return ret ; } inline bignum&operator*=( const bignum&a) { bignum_t t ; mul(t,num,a.num); memcpy (num,t, sizeof (bignum_t)); sgn*=a.sgn ; return * this ; } inline bignum&operator*=( const int a) { mul(num,ABS(a)); sgn*=SGN(a); return * this ; } inline bignum operator*( const bignum&a) { bignum ret ; mul(ret.num,num,a.num); ret.sgn=sgn*a.sgn ; return ret ; } inline bignum operator*( const int a) { bignum ret ; memcpy (ret.num,num, sizeof (bignum_t)); mul(ret.num,ABS(a)); ret.sgn=sgn*SGN(a); return ret ; } inline bignum&operator/=( const bignum&a) { bignum_t t ; div (t,num,a.num); memcpy (num,t, sizeof (bignum_t)); sgn=(num[0]==1&&!num[1])?0:sgn*a.sgn ; return * this ; } inline bignum&operator/=( const int a) { int t ; div (num,ABS(a),t); sgn=(num[0]==1&&!num [1])?0:sgn*SGN(a); return * this ; } inline bignum operator/( const bignum&a) { bignum ret ; bignum_t t ; memcpy (t,num, sizeof (bignum_t)); div (ret.num,t,a.num); ret.sgn=(ret.num[0]==1&&!ret.num[1])?0:sgn*a.sgn ; return ret ; } inline bignum operator/( const int a) { bignum ret ; int t ; memcpy (ret.num,num, sizeof (bignum_t)); div (ret.num,ABS(a),t); ret.sgn=(ret.num[0]==1&&!ret.num[1])?0:sgn*SGN(a); return ret ; } inline bignum&operator%=( const bignum&a) { bignum_t t ; div (t,num,a.num); if (num[0]==1&&!num[1])sgn=0 ; return * this ; } inline int operator%=( const int a) { int t ; div (num,ABS(a),t); memset (num,0, sizeof (bignum_t)); num[0]=1 ; add(num,t); return t ; } inline bignum operator%( const bignum&a) { bignum ret ; bignum_t t ; memcpy (ret.num,num, sizeof (bignum_t)); div (t,ret.num,a.num); ret.sgn=(ret.num[0]==1&&!ret.num [1])?0:sgn ; return ret ; } inline int operator%( const int a) { bignum ret ; int t ; memcpy (ret.num,num, sizeof (bignum_t)); div (ret.num,ABS(a),t); memset (ret.num,0, sizeof (bignum_t)); ret.num[0]=1 ; add(ret.num,t); return t ; } inline bignum&operator++() { * this +=1 ; return * this ; } inline bignum&operator--() { * this -=1 ; return * this ; } ; inline int operator>( const bignum&a) { return sgn>0?(a.sgn>0?comp(num,a.num)>0:1):(sgn<0?(a.sgn<0?comp(num,a.num)<0:0):a.sgn<0); } inline int operator>( const int a) { return sgn>0?(a>0?comp(num,a)>0:1):(sgn<0?(a<0?comp(num,-a)<0:0):a<0); } inline int operator>=( const bignum&a) { return sgn>0?(a.sgn>0?comp(num,a.num)>=0:1):(sgn<0?(a.sgn<0?comp(num,a.num)<=0:0):a.sgn<=0); } inline int operator>=( const int a) { return sgn>0?(a>0?comp(num,a)>=0:1):(sgn<0?(a<0?comp(num,-a)<=0:0):a<=0); } inline int operator<( const bignum&a) { return sgn<0?(a.sgn<0?comp(num,a.num)>0:1):(sgn>0?(a.sgn>0?comp(num,a.num)<0:0):a.sgn>0); } inline int operator<( const int a) { return sgn<0?(a<0?comp(num,-a)>0:1):(sgn>0?(a>0?comp(num,a)<0:0):a>0); } inline int operator<=( const bignum&a) { return sgn<0?(a.sgn<0?comp(num,a.num)>=0:1):(sgn>0?(a.sgn>0?comp(num,a.num)<=0:0):a.sgn>=0); } inline int operator<=( const int a) { return sgn<0?(a<0?comp(num,-a)>=0:1): (sgn>0?(a>0?comp(num,a)<=0:0):a>=0); } inline int operator==( const bignum&a) { return (sgn==a.sgn)?!comp(num,a.num):0 ; } inline int operator==( const int a) { return (sgn*a>=0)?!comp(num,ABS(a)):0 ; } inline int operator!=( const bignum&a) { return (sgn==a.sgn)?comp(num,a.num):1 ; } inline int operator!=( const int a) { return (sgn*a>=0)?comp(num,ABS(a)):1 ; } inline int operator[]( const int a) { return digit(num,a); } friend inline istream&operator>>(istream&is,bignum&a) { read(a.num,a.sgn,is); return is ; } friend inline ostream&operator<<(ostream&os, const bignum&a) { if (a.sgn<0) os<< '-' ; write(a.num,os); return os ; } friend inline bignum sqrt ( const bignum&a) { bignum ret ; bignum_t t ; memcpy (t,a.num, sizeof (bignum_t)); sqrt (ret.num,t); ret.sgn=ret.num[0]!=1||ret.num[1]; return ret ; } friend inline bignum sqrt ( const bignum&a,bignum&b) { bignum ret ; memcpy (b.num,a.num, sizeof (bignum_t)); sqrt (ret.num,b.num); ret.sgn=ret.num[0]!=1||ret.num[1]; b.sgn=b.num[0]!=1||ret.num[1]; return ret ; } inline int length() { return :: length(num); } inline int zeronum() { return :: zeronum(num); } inline bignum C( const int m, const int n) { combination(num,m,n); sgn=1 ; return * this ; } inline bignum P( const int m, const int n) { permutation(num,m,n); sgn=1 ; return * this ; } }; |
分类:
某些模版
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~