CLion debugger: how to display variables in scientific notation?

I am using CLion to develop a c++ program for engineering.  Sometimes my variables in the program are either very large or very small, say, 1.0e20, or 1.0e-20.  The variables in CLion debugger are displayed as numbers by default.  Therefore, in order to tell if the variables are calculated correctly, I must repeatedly count the number of zeros in the numbers.  Is there an option to change the number format in debugger to scientific notation?

0

请先登录再写评论。