C++ MD5加密实现

  1. //MD5.h   
  2. #ifndef BZF_MD5_H  
  3. #define BZF_MD5_H  
  4.   
  5. #include <string>  
  6. #include <iostream>  
  7.   
  8.   
  9. // a small class for calculating MD5 hashes of strings or byte arrays  
  10. // it is not meant to be fast or secure  
  11. //  
  12. // usage: 1) feed it blocks of uchars with update()  
  13. //      2) finalize()  
  14. //      3) get hexdigest() string  
  15. //      or  
  16. //      MD5(std::string).hexdigest()  
  17. //  
  18. // assumes that char is 8 bit and int is 32 bit  
  19. class MD5  
  20. {  
  21. public:  
  22.     typedef unsigned int size_type; // must be 32bit  
  23.   
  24.     MD5();  
  25.     MD5(const std::string& text);  
  26.     void update(const unsigned char *buf, size_type length);  
  27.     void update(const char *buf, size_type length);  
  28.     MD5& finalize();  
  29.     std::string hexdigest() const;  
  30.     friend std::ostream& operator<<(std::ostream&, MD5 md5);  
  31.   
  32. private:  
  33.     void init();  
  34.     typedef unsigned char uint1; //  8bit  
  35.     typedef unsigned int uint4;  // 32bit  
  36.     enum {blocksize = 64}; // VC6 won't eat a const static int here  
  37.   
  38.     void transform(const uint1 block[blocksize]);  
  39.     static void decode(uint4 output[], const uint1 input[], size_type len);  
  40.     static void encode(uint1 output[], const uint4 input[], size_type len);  
  41.   
  42.     bool finalized;  
  43.     uint1 buffer[blocksize]; // bytes that didn't fit in last 64 byte chunk  
  44.     uint4 count[2];   // 64bit counter for number of bits (lo, hi)  
  45.     uint4 state[4];   // digest so far  
  46.     uint1 digest[16]; // the result  
  47.   
  48.     // low level logic operations  
  49.     static inline uint4 F(uint4 x, uint4 y, uint4 z);  
  50.     static inline uint4 G(uint4 x, uint4 y, uint4 z);  
  51.     static inline uint4 H(uint4 x, uint4 y, uint4 z);  
  52.     static inline uint4 I(uint4 x, uint4 y, uint4 z);  
  53.     static inline uint4 rotate_left(uint4 x, int n);  
  54.     static inline void FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  55.     static inline void GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  56.     static inline void HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  57.     static inline void II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  58. };  
  59.   
  60. std::string md5(const std::string str);  
  61.   
  62. #endif  


 

C++代码  收藏代码

  1. //MD5.cpp  
  2. /* MD5 
  3. converted to C++ class by Frank Thilo (thilo@unix-ag.org) 
  4. for bzflag (http://www.bzflag.org) 
  5.  
  6. based on: 
  7.  
  8. md5.h and md5.c 
  9. reference implemantion of RFC 1321 
  10.  
  11. Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All 
  12. rights reserved. 
  13.  
  14. License to copy and use this software is granted provided that it 
  15. is identified as the "RSA Data Security, Inc. MD5 Message-Digest 
  16. Algorithm" in all material mentioning or referencing this software 
  17. or this function. 
  18.  
  19. License is also granted to make and use derivative works provided 
  20. that such works are identified as "derived from the RSA Data 
  21. Security, Inc. MD5 Message-Digest Algorithm" in all material 
  22. mentioning or referencing the derived work. 
  23.  
  24. RSA Data Security, Inc. makes no representations concerning either 
  25. the merchantability of this software or the suitability of this 
  26. software for any particular purpose. It is provided "as is" 
  27. without express or implied warranty of any kind. 
  28.  
  29. These notices must be retained in any copies of any part of this 
  30. documentation and/or software. 
  31.  
  32. */  
  33.   
  34. /* interface header */  
  35. #include "md5.h"  
  36.   
  37. /* system implementation headers */  
  38. #include <stdio.h>  
  39.   
  40.   
  41. // Constants for MD5Transform routine.  
  42. #define S11 7  
  43. #define S12 12  
  44. #define S13 17  
  45. #define S14 22  
  46. #define S21 5  
  47. #define S22 9  
  48. #define S23 14  
  49. #define S24 20  
  50. #define S31 4  
  51. #define S32 11  
  52. #define S33 16  
  53. #define S34 23  
  54. #define S41 6  
  55. #define S42 10  
  56. #define S43 15  
  57. #define S44 21  
  58.   
  59. ///  
  60.   
  61. // F, G, H and I are basic MD5 functions.  
  62. inline MD5::uint4 MD5::F(uint4 x, uint4 y, uint4 z) {  
  63.     return x&y | ~x&z;  
  64. }  
  65.   
  66. inline MD5::uint4 MD5::G(uint4 x, uint4 y, uint4 z) {  
  67.     return x&z | y&~z;  
  68. }  
  69.   
  70. inline MD5::uint4 MD5::H(uint4 x, uint4 y, uint4 z) {  
  71.     return x^y^z;  
  72. }  
  73.   
  74. inline MD5::uint4 MD5::I(uint4 x, uint4 y, uint4 z) {  
  75.     return y ^ (x | ~z);  
  76. }  
  77.   
  78. // rotate_left rotates x left n bits.  
  79. inline MD5::uint4 MD5::rotate_left(uint4 x, int n) {  
  80.     return (x << n) | (x >> (32-n));  
  81. }  
  82.   
  83. // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.  
  84. // Rotation is separate from addition to prevent recomputation.  
  85. inline void MD5::FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  86.     a = rotate_left(a+ F(b,c,d) + x + ac, s) + b;  
  87. }  
  88.   
  89. inline void MD5::GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  90.     a = rotate_left(a + G(b,c,d) + x + ac, s) + b;  
  91. }  
  92.   
  93. inline void MD5::HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  94.     a = rotate_left(a + H(b,c,d) + x + ac, s) + b;  
  95. }  
  96.   
  97. inline void MD5::II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  98.     a = rotate_left(a + I(b,c,d) + x + ac, s) + b;  
  99. }  
  100.   
  101. //  
  102.   
  103. // default ctor, just initailize  
  104. MD5::MD5()  
  105. {  
  106.     init();  
  107. }  
  108.   
  109. //  
  110.   
  111. // nifty shortcut ctor, compute MD5 for string and finalize it right away  
  112. MD5::MD5(const std::string &text)  
  113. {  
  114.     init();  
  115.     update(text.c_str(), text.length());  
  116.     finalize();  
  117. }  
  118.   
  119. //  
  120.   
  121. void MD5::init()  
  122. {  
  123.     finalized=false;  
  124.   
  125.     count[0] = 0;  
  126.     count[1] = 0;  
  127.   
  128.     // load magic initialization constants.  
  129.     state[0] = 0x67452301;  
  130.     state[1] = 0xefcdab89;  
  131.     state[2] = 0x98badcfe;  
  132.     state[3] = 0x10325476;  
  133. }  
  134.   
  135. //  
  136.   
  137. // decodes input (unsigned char) into output (uint4). Assumes len is a multiple of 4.  
  138. void MD5::decode(uint4 output[], const uint1 input[], size_type len)  
  139. {  
  140.     for (unsigned int i = 0, j = 0; j < len; i++, j += 4)  
  141.         output[i] = ((uint4)input[j]) | (((uint4)input[j+1]) << 8) |  
  142.         (((uint4)input[j+2]) << 16) | (((uint4)input[j+3]) << 24);  
  143. }  
  144.   
  145. //  
  146.   
  147. // encodes input (uint4) into output (unsigned char). Assumes len is  
  148. // a multiple of 4.  
  149. void MD5::encode(uint1 output[], const uint4 input[], size_type len)  
  150. {  
  151.     for (size_type i = 0, j = 0; j < len; i++, j += 4) {  
  152.         output[j] = input[i] & 0xff;  
  153.         output[j+1] = (input[i] >> 8) & 0xff;  
  154.         output[j+2] = (input[i] >> 16) & 0xff;  
  155.         output[j+3] = (input[i] >> 24) & 0xff;  
  156.     }  
  157. }  
  158.   
  159. //  
  160.   
  161. // apply MD5 algo on a block  
  162. void MD5::transform(const uint1 block[blocksize])  
  163. {  
  164.     uint4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];  
  165.     decode (x, block, blocksize);  
  166.   
  167.     /* Round 1 */  
  168.     FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */  
  169.     FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */  
  170.     FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */  
  171.     FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */  
  172.     FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */  
  173.     FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */  
  174.     FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */  
  175.     FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */  
  176.     FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */  
  177.     FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */  
  178.     FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */  
  179.     FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */  
  180.     FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */  
  181.     FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */  
  182.     FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */  
  183.     FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */  
  184.   
  185.     /* Round 2 */  
  186.     GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */  
  187.     GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */  
  188.     GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */  
  189.     GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */  
  190.     GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */  
  191.     GG (d, a, b, c, x[10], S22,  0x2441453); /* 22 */  
  192.     GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */  
  193.     GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */  
  194.     GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */  
  195.     GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */  
  196.     GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */  
  197.     GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */  
  198.     GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */  
  199.     GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */  
  200.     GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */  
  201.     GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */  
  202.   
  203.     /* Round 3 */  
  204.     HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */  
  205.     HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */  
  206.     HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */  
  207.     HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */  
  208.     HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */  
  209.     HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */  
  210.     HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */  
  211.     HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */  
  212.     HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */  
  213.     HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */  
  214.     HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */  
  215.     HH (b, c, d, a, x[ 6], S34,  0x4881d05); /* 44 */  
  216.     HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */  
  217.     HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */  
  218.     HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */  
  219.     HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */  
  220.   
  221.     /* Round 4 */  
  222.     II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */  
  223.     II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */  
  224.     II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */  
  225.     II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */  
  226.     II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */  
  227.     II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */  
  228.     II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */  
  229.     II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */  
  230.     II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */  
  231.     II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */  
  232.     II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */  
  233.     II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */  
  234.     II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */  
  235.     II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */  
  236.     II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */  
  237.     II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */  
  238.   
  239.     state[0] += a;  
  240.     state[1] += b;  
  241.     state[2] += c;  
  242.     state[3] += d;  
  243.   
  244.     // Zeroize sensitive information.  
  245.     memset(x, 0, sizeof x);  
  246. }  
  247.   
  248. //  
  249.   
  250. // MD5 block update operation. Continues an MD5 message-digest  
  251. // operation, processing another message block  
  252. void MD5::update(const unsigned char input[], size_type length)  
  253. {  
  254.     // compute number of bytes mod 64  
  255.     size_type index = count[0] / 8 % blocksize;  
  256.   
  257.     // Update number of bits  
  258.     if ((count[0] += (length << 3)) < (length << 3))  
  259.         count[1]++;  
  260.     count[1] += (length >> 29);  
  261.   
  262.     // number of bytes we need to fill in buffer  
  263.     size_type firstpart = 64 - index;  
  264.   
  265.     size_type i;  
  266.   
  267.     // transform as many times as possible.  
  268.     if (length >= firstpart)  
  269.     {  
  270.         // fill buffer first, transform  
  271.         memcpy(&buffer[index], input, firstpart);  
  272.         transform(buffer);  
  273.   
  274.         // transform chunks of blocksize (64 bytes)  
  275.         for (i = firstpart; i + blocksize <= length; i += blocksize)  
  276.             transform(&input[i]);  
  277.   
  278.         index = 0;  
  279.     }  
  280.     else  
  281.         i = 0;  
  282.   
  283.     // buffer remaining input  
  284.     memcpy(&buffer[index], &input[i], length-i);  
  285. }  
  286.   
  287. //  
  288.   
  289. // for convenience provide a verson with signed char  
  290. void MD5::update(const char input[], size_type length)  
  291. {  
  292.     update((const unsigned char*)input, length);  
  293. }  
  294.   
  295. //  
  296.   
  297. // MD5 finalization. Ends an MD5 message-digest operation, writing the  
  298. // the message digest and zeroizing the context.  
  299. MD5& MD5::finalize()  
  300. {  
  301.     static unsigned char padding[64] = {  
  302.         0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  
  303.         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  
  304.         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  
  305.     };  
  306.   
  307.     if (!finalized) {  
  308.         // Save number of bits  
  309.         unsigned char bits[8];  
  310.         encode(bits, count, 8);  
  311.   
  312.         // pad out to 56 mod 64.  
  313.         size_type index = count[0] / 8 % 64;  
  314.         size_type padLen = (index < 56) ? (56 - index) : (120 - index);  
  315.         update(padding, padLen);  
  316.   
  317.         // Append length (before padding)  
  318.         update(bits, 8);  
  319.   
  320.         // Store state in digest  
  321.         encode(digest, state, 16);  
  322.   
  323.         // Zeroize sensitive information.  
  324.         memset(buffer, 0, sizeof buffer);  
  325.         memset(count, 0, sizeof count);  
  326.   
  327.         finalized=true;  
  328.     }  
  329.   
  330.     return *this;  
  331. }  
  332.   
  333. //  
  334.   
  335. // return hex representation of digest as string  
  336. std::string MD5::hexdigest() const  
  337. {  
  338.     if (!finalized)  
  339.         return "";  
  340.   
  341.     char buf[33];  
  342.     for (int i=0; i<16; i++)  
  343.         sprintf(buf+i*2, "%02x", digest[i]);  
  344.     buf[32]=0;  
  345.   
  346.     return std::string(buf);  
  347. }  
  348.   
  349. //  
  350.   
  351. std::ostream& operator<<(std::ostream& out, MD5 md5)  
  352. {  
  353.     return out << md5.hexdigest();  
  354. }  
  355.   
  356. //  
  357.   
  358. std::string md5(const std::string str)  
  359. {  
  360.     MD5 md5 = MD5(str);  
  361.   
  362.     return md5.hexdigest();  
  363. }  



 

C++代码  收藏代码

  1. #include <iostream>  
  2. #include "md5.h"  
  3.   
  4. using namespace std;  
  5.   
  6. int main(int argc, char *argv[])  
  7. {  
  8.     cout << "md5 of 'grape': " << md5("grape")<<endl;  
  9.     return 0;  
  10. }

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是使用C++实现MD5加密的代码示例: ```c++ #include <iostream> #include <cstring> #include <cstdio> #include <cstdlib> #include <cmath> using namespace std; typedef unsigned int uint32; typedef unsigned char uint8; const uint32 T[64] = { 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501, 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821, 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8, 0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a, 0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70, 0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665, 0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1, 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391 }; const uint32 A = 0x67452301; const uint32 B = 0xefcdab89; const uint32 C = 0x98badcfe; const uint32 D = 0x10325476; uint32 X[16]; uint32 rotate_left(uint32 x, uint32 n) { return (x << n) | (x >> (32 - n)); } void md5_transform(uint32 *state, uint8 *block) { uint32 a = state[0], b = state[1], c = state[2], d = state[3]; uint32 k, f, g; for (int i = 0; i < 64; i++) { if (i < 16) { k = i; f = (b & c) | ((~b) & d); g = i; } else if (i < 32) { k = (5 * i + 1) % 16; f = (d & b) | ((~d) & c); g = (5 * i + 1) % 16; } else if (i < 48) { k = (3 * i + 5) % 16; f = b ^ c ^ d; g = (3 * i + 5) % 16; } else { k = (7 * i) % 16; f = c ^ (b | (~d)); g = (7 * i) % 16; } uint32 temp = d; d = c; c = b; b = b + rotate_left((a + f + T[i] + X[k]), g); a = temp; } state[0] += a; state[1] += b; state[2] += c; state[3] += d; } void md5(const uint8 *initial_msg, size_t initial_len, uint8 *digest) { uint32 h0, h1, h2, h3; h0 = A; h1 = B; h2 = C; h3 = D; uint8 *msg = NULL; size_t new_len, offset; uint32 bits_len; new_len = (initial_len * 8 + 64 + 512) / 512 * 512 / 8; msg = (uint8 *)malloc(new_len); memcpy(msg, initial_msg, initial_len); msg[initial_len] = 0x80; offset = initial_len + 1; while (offset < new_len - 8) { msg[offset++] = 0; } bits_len = initial_len * 8; memcpy(msg + new_len - 8, &bits_len, 4); memset(msg + new_len - 4, 0, 4); for (offset = 0; offset < new_len; offset += (512 / 8)) { for (int i = 0; i < 16; i++) { X[i] = ((uint32)msg[offset + 4 * i]) | (((uint32)msg[offset + 4 * i + 1]) << 8) | (((uint32)msg[offset + 4 * i + 2]) << 16) | (((uint32)msg[offset + 4 * i + 3]) << 24); } md5_transform(&h0, (uint8 *)X); md5_transform(&h1, (uint8 *)X); md5_transform(&h2, (uint8 *)X); md5_transform(&h3, (uint8 *)X); } free(msg); memcpy(digest, &h0, 4); memcpy(digest + 4, &h1, 4); memcpy(digest + 8, &h2, 4); memcpy(digest + 12, &h3, 4); } int main() { uint8 digest[16]; char msg[] = "Hello, world!"; md5((uint8 *)msg, strlen(msg), digest); for (int i = 0; i < 16; i++) { printf("%02x", digest[i]); } printf("\n"); return 0; } ```

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值