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...
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...
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...