编一个程序,利用while循环语句和Math类中的Pow()方法,求出1到10的各个数的平方之和。
doublei=1,s=0; while(i<=10) { s=s+Math.Pow(i,2); i++; } Console.WriteLine("和为{0}",s);
免费的网站请分享给朋友吧