Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]2 Replies - 0 Views - Last Post: 23 minutes ago
#1
Reputation: 0
- Posts: 1
- Joined: Yesterday, 05:35 PM
Posted 44 minutes ago
I have an assignment I am a bit stuck on. The prompt is: (Find the smallest element) Write a method that finds the smallest element in an array of double values using the following header:public static double min(double[] array)
Write a test program that prompts the user to enter ten numbers, invokes this
method to return the minimum value, and displays the minimum value.
Here is what I have so far:
import java.util.Scanner; public class Exercise6_9 { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Enter 10 numbers."); double[] numbers = new double[10]; for (int i = 0; i < numbers.length; i++ ){ numbers[i] = input.nextDouble(); } } public static double min(double[] numbers){ double min = numbers[10]; for(int i=1;i<numbers.length;i++){ if(numbers[i] < min){ min = numbers[i]; System.out.println(min); } } return min; } }
I cannot figure out how to print the minimum value. I have tried countless different solutions. I am a complete noob at Java and my question is, am I at least close to the solution? and if so how do I print the minimum value? I get the error that "double[] cannot be defined in exercise 6_9."
Any help would be much appreciated.
Is This A Good Question/Topic? 0
Replies To: Find the smallest element in array
#2
Reputation: 1702
- Posts: 2,574
- Joined: 21-June 11
Re: Find the smallest element in array
Posted 29 minutes ago
Yes, you're on the right track. The only thing that's missing is for you to call your min method from the main method and print the result.You also probably shouldn't print the current minimum every time that you pick a new minimum, but I assume that's just there for debugging purposes.
Helghast, on 09 June 2013 - 08:54 PM, said:
I get the error that "double[] cannot be defined in exercise 6_9."
Can you post the exact and complete error message including line numbers and whatnot? I don't get any error message when compiling and running your code.
#3
Reputation: 0
- Posts: 14
- Joined: 27-May 13
Re: Find the smallest element in array
Posted 23 minutes ago
A couple points:try to watch for indentation.
(your main is nice and readable, but your min is too indented.)
next: try to keep your main as small as possible. Only a couple lines.
Everything else could be done in another method.
Make only your main (and some variables when necessary) static.
In order to call those non-static methods in your main you create an new object. (classname name = new classname() )
Than you can call your methods via the object name.
Nextup:
Your program is not entirely correct.
Any array-index (whether it's double, int, String, ...) always start at 0.
So item 1 is a index 0.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/322712-find-the-smallest-element-in-array/
artie lange nascar daytona 2012 kasey kahne angelina jolie right leg saving face academy award winners best picture
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.