方程A5+B5+C5+D5+E5=F5刚好有一个满足0<A≤B≤C≤D≤E≤F≤75的整数解.请编写一个求出该解的程序: using System; namespace ReverseTheExponentiation { class Program { static void Main(string[] args) { Program P = new Program(); P.ReverseTheExponentiation(); } void ReverseTheExponentiation…