Recent content by cyber-girl

  1. C

    Securing Messages with Client/Server Encryption

    Create a program for client/server, and encrypt/decrypt messages by public/private keys.
  2. C

    C/C++ How to Solve Large Integer Powers in C++?

    To display full an integer value, which calculated by this formula: doub_num*(10^num_p). Here doub_num is any double number, num_p is any big interger number (for ex, 25, 49, 102 etc). In the simple case the result of this formula gives us floating point numbers, like this: 25.7e+3. But in my...
  3. C

    C/C++ How to Solve Large Integer Powers in C++?

    Could you show how works the Bignum or multiple precision arithmetic in the C/C++ code?
  4. C

    C/C++ How to Solve Large Integer Powers in C++?

    Thx for your answers. But the result give us with small number of power. The task is put big number of power. For ex, If I put 30 or maybe more than it (10^30), then the result must be with any double number 2.5*10^14=2500000000000000000000000000000. Is it possible to get such kind of number on...
  5. C

    C/C++ How to Solve Large Integer Powers in C++?

    Hello everybody! Here I wrote simple code for power of n number. At result I need to get an integer value. But my code works only small number of power. (Here in my code is p: 10^p). If I increase p number, then the result will be like this: 2.74*10^6=2.7e+006. But I need the result will be...
Back
Top