How do I make the coding environment from Sololearn show all the characters from a number which is really long? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do I make the coding environment from Sololearn show all the characters from a number which is really long?

I have just started learnin to code and tried googling the problem my code is using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { double x =9; x= Math.Pow(x,9); x= Math.Pow(x,9); Console.WriteLine(x); } } } the thing im trying to do is to get the output as the full number from 9^9^9. Is there any function that enables this or is it unchangeable? the Output from the Code is: 1.96627050475553E+77

18th Jul 2017, 2:31 PM
robin welmers
robin welmers - avatar
1 Answer
0
the no. is too big so I think that's why u cannot show the full no.
18th Jul 2017, 2:33 PM
_Retr0/-
_Retr0/- - avatar