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]9 Replies - 90 Views - Last Post: Yesterday, 09:42 PM
#1
Reputation: 0
- Posts: 22
- Joined: 21-March 13
Posted Yesterday, 11:47 AM
Hi friends. I am in trouble with some programs including this. Any help will be appreciated./*Complete the method, named bigSum, in the class named ArrayOps.java. The only parameter to this method is a two-dimensional array of integers with only 2 rows. This method should sum each row of integers separately, and then decide which of the two sums is larger. This larger sum is the return value for this method. For example, suppose the array contains the following data: [ [ 25, 16, 14 ] [ 13, 27, 22 ] ] The sum of the first row is (25 + 16 + 14) = 55, while the sum of the second row is (13 + 27 + 22) = 62. Comparing, we see that the sum of the second row is the larger sum; hence, the method returns the integer 62. You might think of this as comparing the test grades of two students. Complete the following code:*/ import java.util.Scanner; public class ArrayOps5 { /** This method sums up both rows of a two-dimensional array (the only parameter to the method) and returns the greater sum. @param theArray, a 2-D array of integers @return, the greater row sum */ public static int bigSum(int[][] theArray) { int sum1 = 0; int sum2 = 0; int sum = 0; for (int i = 0; i < theArray.length; i++)// loop though theArray, summing first row { for(int j = 0; j < theArray[0].length; j++) { sum1 = sum1 + theArray[i][j]; } return sum1; } for (int i = 0; i < theArray.length; i++)// loop though theArray, summing second row { for(int j = 0; j < theArray[0].length; j++) { sum2 = sum2 + theArray[i][j]; } return sum2; } if (sum1>sum2) // your work here { return sum1;} else { return sum2;} } public static void main(String[] args) { Scanner in = new Scanner(System.in); int[][] theArray = {{ 25, 16, 14 }, { 13, 27, 22}}; System.out.print(bigSum(theArray)); } }//No.48
Is This A Good Question/Topic? 0
Replies To: Summing both rows and print the greatest value...
#2
Reputation: 172
- Posts: 1,526
- Joined: 13-March 10
Re: Summing both rows and print the greatest value...
Posted Yesterday, 11:56 AM
You have return statements in wrong places. The IDE should warn you that other code is not reacheable.
#3
Reputation: 0
- Posts: 22
- Joined: 21-March 13
Re: Summing both rows and print the greatest value...
Posted Yesterday, 08:05 PM
Thanks Darek, so, what should I do now?
#4
Reputation: 8903
- Posts: 32,983
- Joined: 27-December 08
Re: Summing both rows and print the greatest value...
Posted Yesterday, 08:45 PM
You only return one value at the end. Don't use return statements before your comparisons. Look at your logic and read your code.
#5
Reputation: 0
- Posts: 22
- Joined: 21-March 13
Re: Summing both rows and print the greatest value...
Posted Yesterday, 08:53 PM
Thanks Mac, Please help me, what should I do now.for (int i = 0; i < theArray.length; i++)// loop though theArray, summing first row { for(int j = 0; j < theArray[0].length; j++) { sum1 = sum1 + theArray[i][j]; } } for (int i = 0; i < theArray.length; i++)// loop though theArray, summing second row { for(int j = 0; j < theArray[0].length; j++) { sum2 = sum2 + theArray[i][j]; } } if (sum1>sum2) // your work here { return sum1; } else { return sum2; }
#6
Reputation: 8903
- Posts: 32,983
- Joined: 27-December 08
Re: Summing both rows and print the greatest value...
Posted Yesterday, 08:55 PM
What specific problems or errors are you encountering? Are you actually trying to debug your code? It feels like you're debugging by proxy here.
#7
Reputation: 0
- Posts: 22
- Joined: 21-March 13
Re: Summing both rows and print the greatest value...
Posted Yesterday, 09:11 PM
Sorry Mac, I did debug but forgot to tell the result. While debugging, I found sum1=117, sum2=117 and the program returning 117. Actually, it counting everything twice.
#8
Reputation: 8903
- Posts: 32,983
- Joined: 27-December 08
Re: Summing both rows and print the greatest value...
Posted Yesterday, 09:27 PM
If you want to compare rows, you only need a single for loop.for(int j = 0; j < theArray[0].length; j++){ //add up theArray[0][j] for sum1 //add up theArray[1][j] for sum2 }
#9
Reputation: 0
- Posts: 22
- Joined: 21-March 13
Re: Summing both rows and print the greatest value...
Posted Yesterday, 09:40 PM
Thanks Mac, I appreciate your help. My code looks good. Thank you very much.
#10
Reputation: 8903
- Posts: 32,983
- Joined: 27-December 08
Re: Summing both rows and print the greatest value...
Posted Yesterday, 09:42 PM
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/317740-summing-both-rows-and-print-the-greatest-value/
secret service prostitution 4 20 george zimmerman sheree whitfield weather dallas pat summitt real housewives of atlanta
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.