概述
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (true) {
System.out.println("please input a positive integer: ");
int n = sc.nextInt();
getSubInteger(n);
System.out.println("=========================");
}
}
public static void getSubInteger(int n) {
int min = 1;
int max = 1;
int sum = 0;
while (min <= n / 2 + 1) {
if (sum == n) {
System.out.print(n + " = ");
for (int k = min; k <= max - 1; k++) {
if (k < max - 1)
System.out.print(k + " + ");
else
System.out.print(k);
}
System.out.println();
min++;
max = min;
sum = 0;
} else if (sum > n) {
sum = 0;
min++;
max = min;
} else {
sum = sum + max;
max++;
}
}
}
最后
以上就是友好大船为你收集整理的输入一个正整数n,输出所有和为n的连续正整数序列的全部内容,希望文章能够帮你解决输入一个正整数n,输出所有和为n的连续正整数序列所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复