分别用for,while,do_while循环语句以及递归方法计算n!,并输出算式(java语句)

如题所述

//for循环
public static void forFunc(int n) {
int result = 1;
StringBuffer str = new StringBuffer();
for (int i = n; i > 0; i--) {
if (i > 1) {
str.append(i + "*");
} else {
str.append(i + "=");
}
result *= i;
}
str.append(result);
System.out.print(str.toString());
}
//while循环
public static void whileFunc(int n) {
int result = 1;
StringBuffer str = new StringBuffer();
while (n > 0) {
if (n > 1) {
str.append(n + "*");
} else {
str.append(n + "=");
}
result *= n;
n--;
}
str.append(result);
System.out.print(str.toString());
}
//do_while循环
public static void doWhileFunc(int n) {
int result = 1;
StringBuffer str = new StringBuffer();
do {
if (n > 1) {
str.append(n + "*");
} else {
str.append(n + "=");
}
result *= n;
n--;
} while (n > 0);
str.append(result);
System.out.print(str.toString());
}
//递归
public static void recursiveFunc(int n, int result) {

if (n > 1) {
System.out.print(n + "*");
recursiveFunc(n - 1, result * n);
} else {
System.out.print(n + "=" + result);
}

}
温馨提示:答案为网友推荐,仅供参考

相关了解……

你可能感兴趣的内容

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 非常风气网