How do I change the error to a success? import java.lang.Math; import java.util.Scanner; public class MidtermProblems { public static String odds(int a) { int odds; odds = a; String s; if(odds > 0) { //s = odds; return "" + odds; } else if(odds < 0) { s = "None"; } else { s = ""; } return s; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int a=0; a = in.nextInt(); //Add Loop to get odd Numbers if(a<0) { System.out.println(odds(a)); } else { for(int i=1;i<=a;i=i+2){ System.out.print(odds(i)+" "); } } //String result = odds(a);Not Required //result = Main.odds(a); Not Required } }
How do I change the error to a success?
import java.lang.Math;
import java.util.Scanner;
public class MidtermProblems
{
public static String odds(int a)
{
int odds;
odds = a;
String s;
if(odds > 0)
{
//s = odds;
return "" + odds;
}
else if(odds < 0)
{
s = "None";
}
else
{
s = "";
}
return s;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int a=0;
a = in.nextInt();
//Add Loop to get odd Numbers
if(a<0) {
System.out.println(odds(a));
}
else {
for(int i=1;i<=a;i=i+2){
System.out.print(odds(i)+" ");
}
}
//String result = odds(a);Not Required
//result = Main.odds(a); Not Required
}
}
![Your output
method odds (int) failed on
negative argment value
ERROR
--- -](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fd0724b8d-cb7c-48e0-bc06-148ca3a13dd6%2Ff53d5bd4-2da8-4b7e-b0c4-79994c6eb295%2F91wz3s_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)