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]7 Replies - 100 Views - Last Post: Yesterday, 08:33 PM
#1
Reputation: 0
- Posts: 36
- Joined: 10-March 13
Posted Yesterday, 10:49 AM
// this program works fine, BUT I want to know how to force the // random number generator, ON LINE 14, to create a number within a certain limit, such as 0 to 10 // this program will create a random number and do a series of loops with the number you input import java.util.Scanner; class While2{ public static void main(String[] args){ Scanner input = new Scanner(System.in); int random = (int)(Math.random() * 20); // if you dont put * SOMETHING then it will be default, 0 // create while loop while(true){ System.out.println("Enter a number between 0 and 10: "); int number = input.nextInt(); if (random == number){ System.out.println("Your number matches the random number, " + random); break; // if u dont put this, it will keep asking you } else if (random > number) System.out.println("Sorry, but random ," + random + " is bigger than your number " + number); else System.out.println("Sorry, but your number is too high, compared to the random " + random); } } }
This post has been edited by streek405: Yesterday, 10:51 AM
Is This A Good Question/Topic? 0
Replies To: How do I create a random number within a certain limit?
#2
Reputation: 2128
- Posts: 8,876
- Joined: 20-September 08
Re: How do I create a random number within a certain limit?
Posted Yesterday, 10:54 AM
#3
Reputation: 4
- Posts: 31
- Joined: 28-August 10
Re: How do I create a random number within a certain limit?
Posted Yesterday, 11:32 AM
There's an API for a reason. It would serve you well to learn how to use it.http://docs.oracle.c...ase/6/docs/api/
#4
Reputation: 0
- Posts: 36
- Joined: 10-March 13
Re: How do I create a random number within a certain limit?
Posted Yesterday, 07:25 PM
g00se, on 09 June 2013 - 10:54 AM, said:
I dont fully understand that code...I tried running and compiling that code by itself, but I got an error.
Here is the code that I tested :
public class Random{ public static void main(String[] args){ System.out.println(Random.ranInRangeInc(Integer.valueOf(args[0], Integer.valueOf(arg[1])))); System.out.println(Random.ranInRangeInc(Double.valueOf(args[0], Double.valueOf(arg[1])))); } public static int randInRangeInc(int min, int max){ return min + (int) (Math.random() * (max - min)); } public static int randInRangeInc(double min, double max){ return min + (int) (Math.random() * (max - min)); } }
#5
Reputation: 20
- Posts: 60
- Joined: 22-April 13
Re: How do I create a random number within a certain limit?
Posted Yesterday, 08:01 PM
What's your error?
#6
Reputation: 0
- Posts: 36
- Joined: 10-March 13
Re: How do I create a random number within a certain limit?
Posted Yesterday, 08:05 PM
schutzzz, on 09 June 2013 - 08:01 PM, said:
I have no error. I just want to know how to make the random number within a certain range. I mean, the random number could be a billion...but I want it to be like within, say, 0 and 20.
#7
Reputation: 20
- Posts: 60
- Joined: 22-April 13
Re: How do I create a random number within a certain limit?
Posted Yesterday, 08:07 PM
lol, I mean you said you tried to run and compile the code but got an error. I was just curious. Do you have the arguments set in your options?
#8
Reputation: 20
- Posts: 60
- Joined: 22-April 13
Re: How do I create a random number within a certain limit?
Posted Yesterday, 08:33 PM
I highly advise you not to name a class the same name as java.util's Randomimport java.util.Random; public class Randoms { public static void main(String[] args){ System.out.println(randomNum(25, 50)); } public static int randomNum(int min, int max){ return min + (int) (Math.random() * (max - min)); } }
This post has been edited by schutzzz: Yesterday, 08:33 PM
Page 1 of 1
costa rica Earthquake Costa Rica Clinton speech Michael Strahan Griselda Blanco Michelle Obama Speech Michael Clarke Duncan
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.