Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有下一个:
double a = Math.Pow(b, c);
我知道'a'和'c',但我需要得到'b',比如:
double b = a ??? c;
的Math.Pow倒数:c
Math.Pow
c
double b = Math.Pow(a, 1.0 / c);