- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
每个完美立方(例如 8、27、216 等)都可以表示为一系列连续奇数的总和。事实上,这样的序列将恰好包含“n”个连续奇数,其中“n”是给定立方体的立方根。
For example: 1) 8=3+5= 2^3 (2 odd numbers)
2) 125=21+23+25+27+29= 5^3 (5 odd numbers)
3) 1000=91+93+95+97+99+101+103+105+107+109= 10^3 (10 odd numbers)
以下代码生成一系列连续奇数,其总和等于作为输入的完美立方(变量名称“cube”)。 问题 - 在给定的代码中没有语法错误,并且尽管存在 do-while 循环,但它仅运行一次,这确保用户可以通过在询问时输入是/否 (Y/N) 来尝试不同的多维数据集。
import java.util.*;
class CUBE {
void main() {
/*gives a series of consecutive odd numbers
whose sum is equal to the input value.
input is a cube of a number less than 1000*/
int i,odd,t,sum,cube,n; String c="y";
Scanner sc=new Scanner(System.in);
do {
i=1;
odd=1;
t=2;
sum=0;
System.out.println("\nEnter the cube");
cube=sc.nextInt(); //input is stored in 'cube'
n=cubeRoot(cube); /*'n' is the cube root of 'cube'. If 'cube'
is not a perfect cube then n=0*/
while(i<=n) {
sum+=odd; //consecutive odd numbers are are added in sum
if(sum==cube) //loop stops if sum=cube
{
break;
}
else if (i==n && sum!=cube) {
i=1; //counter goes back to 1
sum=0;
odd=i+t; //odd becomes the next odd number just after 1 and then the one after that
t+=2;
}
else {
i++;
odd+=2;
}
}
if (n!=0) { //if 'cube' is a perfect cube then n will never be 0
System.out.print("\n"+cube+" = ");
for(i=odd-2*(n-1);i<=odd;i+=2)
{
if(i==odd)
System.out.print(i+"\n\n");
else
System.out.print(i + " + ");
}
System.out.println("\nTry again? (Y/N)\n");
c=sc.nextLine();
}
}
while(c.equals("y")||c.equals("Y"));
//if c is "y" then loop should run again but it doesnt
}
int cubeRoot(int cube) {
/*returns the cube root of
cube and returns 0 if its
invalid */
int i;
for(i=1;i<=1000;i++) //n sholud be less than 1000
{
if(i*i*i==cube) //if i^3 = cube then n=i
return i;
}
System.out.println("\nINVALID INPUT.");//prints if cube is not a perfect cube
return 0;
}
}
最佳答案
只需在 while 循环内添加一个新的扫描仪,它就可以工作:
System.out.println("\nTry again? (Y/N)\n");
Scanner sc2=new Scanner(System.in);
c=sc2.nextLine();
输入 - 输出:
c is : y
Enter the cube
1
1 = 1
Try again? (Y/N)
Y
Enter the cube
2
INVALID INPUT.
Enter the cube
3
INVALID INPUT.
Enter the cube
4
INVALID INPUT.
Enter the cube
5
INVALID INPUT.
Enter the cube
6
INVALID INPUT.
Enter the cube
7
INVALID INPUT.
Enter the cube
8
8 = 1
2
Try again? (Y/N)
N
正如你所看到的,只要你输入“y”或“Y”它就会继续运行,当你输入时程序退出,如你所愿!
顺便说一句,您的代码无法编译。这是一个编译并成功运行的 Java 类。您的代码无法编译的原因是
1) 你没有正确声明类的main方法2)您没有创建该类的实例,因此您无法按照您尝试的方式调用该方法(这会导致编译错误)。
请参阅以下有效代码:
import java.util.*;
class CUBE {
public static void main(String[] args) { /*gives a series of consecutive odd numbers
whose sum is equal to the input value.
input is a cube of a number less than 1000*/
int i,odd,t,sum,cube,n;
String c="y";
System.out.println("c is : " + c);
Scanner sc=new Scanner(System.in);
do
{
i=1;
odd=1;
t=2;
sum=0;
System.out.println("\nEnter the cube");
cube=sc.nextInt(); //input is stored in 'cube'
CUBE myCube = new CUBE();
n=myCube.cubeRoot(cube); /*'n' is the cube root of 'cube'. If 'cube'
is not a perfect cube then n=0*/
while(i<=n)
{
sum+=odd; //consecutive odd numbers are are added in sum
if(sum==cube) //loop stops if sum=cube
{
break;
}
else if(i==n && sum!=cube)
{
i=1; //counter goes back to 1
sum=0;
odd=i+t; //odd becomes the next odd number just after 1 and then the one after that
t+=2;
}
else
{
i++;
odd+=2;
}
}
if(n!=0) //if 'cube' is a perfect cube then n will never be 0
{
System.out.print("\n"+cube+" = ");
for(i=1;i<=n;i++,odd-=2) //i gives the required odd numbers of the series
{
System.out.println(i);
}
System.out.println("\nTry again? (Y/N)\n");
Scanner sc2=new Scanner(System.in);
c=sc2.nextLine();
}
}
while(c.equals("y")||c.equals("Y"));//if c is "y" then loop should run again but it doesnt
}
int cubeRoot(int cube) { /*returns the cube root of
cube and returns 0 if its
invalid */
int i;
for(i=1;i<=1000;i++)//n sholud be less than 1000
{
if(i*i*i==cube) //if i^3 = cube then n=i
return i;
}
System.out.println("\nINVALID INPUT.");//prints if cube is not a perfect cube
return 0;
}}
关于java - do-while 循环出现问题。使用 BlueJ 编译成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29319810/
我正在使用 jQuery 的 $.ajax 函数来提交表单,它可以工作,但成功正是我遇到问题的地方。这是我的代码: $("#form").submit(function () { $.
我正在使用动态分页。 我需要在开始另一个事件之前取消 jQuery ajax 中的 success 事件。 我已经设置了一个等于$.ajax()的变量,在这样做之前,无论如何我都会调用abort。 问
如果我错了,请纠正我,但我对 $.post 成功/失败的理解是,如果 url 有效,这将返回成功。唯一会返回失败的情况是 url 无效。 如果这是真的,我如何验证成功函数?我问的原因是无论发生什么,即
HANDLE hFile = CreateFile(LPCTSTR("filename"), // name of the write
我正在使用以下代码发送短信。但这似乎不会在未发送短信时产生异常。例如,当没有足够的钱发送时,我仍然会去 smsSucces();有没有人知道解决此问题的方法以确保它已发送? private b
我正在尝试将字符串转换为 DateTime,在一台计算机上,它工作正常,但在另一台计算机上,它却不行!它运行的计算机运行的是 32 位 Windows 7,它不运行的计算机运行的是 64 位 Wind
我在页面上使用表单让用户输入将用于各种目的的图像的 url。我正在编写一个 ajax 方法来确定他们提供的 url 是否实际上是图像。到目前为止,我已经这样做了: $(document).on('re
我在 jquery 中对 php 脚本进行 ajax 调用。但是 php 脚本需要返回什么才能触发 ajax 中的成功/错误处理程序。所以这是 ajax: $.ajax({ data:
几个简单的问题: 对于 native 和 Flash/Silverlight 垫片来说,成功事件是“规范化”事件吗?记录的示例表明它仅适用于 Flash/Silverlight 对象准备就绪的情况。
这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the h
我尝试使用新的 Groovy Grape Groovy 1.6-beta-2 中的功能,但我收到一条错误消息; unable to resolve class com.jidesoft.swing.J
我正在使用 sequelize/nodejs/express/react 将实体持久化到 postgres 数据库 我有两个主要模型,国家和事件,我正在使用该应用程序,并且有一个名为“保存到数据库”的
我有以下代码,其中有 2 个电子邮件输入字段,我需要验证它们是否相同,并且使用 jQuery validate equalTo 成功运行。 Email Address
我正在尝试找出解决此问题的正确方法。 假设我们有一家元素商店。这些项目可以编辑、删除和创建。编辑或添加项目时,路线更改为/item/add 或/item/edit/{id}。 在 saga 成功添加或
这个问题已经有答案了: How do I return the response from an asynchronous call? (42 个回答) 已关闭 8 年前。 我有这段代码,警报工作正常
Closed. This question needs to be more focused。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
我想在单击超链接 (.remove_resort) 时(成功的 ajax 调用后)删除超链接的(父)跨度。 虽然ajax调用成功,但是最后span并没有被移除。这里出了什么问题? 请记住:有几个类
我正在编写一个非常简单的程序来将鼠标剪辑到指定的窗口。它从系统托盘运行,没有可见窗口。由于同一窗口会有多个实例,因此它使用 EnumWindows() 迭代每个顶级窗口,并将它们的 hwnd 与 Ge
我正在尝试找出如何执行 if 语句,以便如果玩家的击球率超过 0.250,则会为成功的 tr 添加一个类别。 我发现了以下堆栈问题,但我不确定可以使用或应该使用哪种方式以及如何使用这些堆栈问题。 ht
我是 Prolog 的新手,我正在尝试解决这个练习: Define a predicate greater_than/2 that takes two numerals in the notation
我是一名优秀的程序员,十分优秀!