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]1 Replies - 29 Views - Last Post: Today, 03:44 PM
#1
Reputation: 0
- Posts: 1
- Joined: Today, 02:58 PM
Posted Today, 03:29 PM
The following is the error I am getting:....java:21: error: method printGrade in class HwScore cannot be applied to given types;
homework.printGrade();
^
required: int
found: no arguments
reason: actual and formal argument lists differ in length
1 error
Tool completed with exit code 1
//*******************************
On this snippet of code:
//*******************************
//From the class file:
//*******************************
// this method enables the printing of individual assignments points, max points, and grade public void printGrade(int hwNumber) { double grade; // grade percentage for individual assignment double earned = 0; // how many points earned on current assignment double possible = 0; // how many points possible on current assignment earned = earnedPoints[hwNumber]; //earned is element of earnedPoints[] specified in printGrade call possible = possiblePoints[hwNumber]; //possible is element of possiblePoints[] specified in printGrade call grade = (earned / possible); if (grade >= letterGrade[0]) { System.out.println("On this homework, you earned " + earned + " out of " + possible + " possible points: A"); } else if (grade >= letterGrade[1]) { System.out.println("On this homework, you earned " + earned + " out of " + possible + " possible points: B"); } else if (grade >= letterGrade[2]) { System.out.println("On this homework, you earned " + earned + " out of " + possible + " possible points: C"); } else if (grade >= letterGrade[3]) { System.out.println("On this homework, you earned " + earned + " out of " + possible + " possible points: D"); } else { System.out.println("On this homework, you earned " + earned + " out of " + possible + " possible points: F"); } // end if else statement }// end printGrade
//*******************************
//From the Driver file: //******************************* public class Prog2 { public static void main (String[] args) { HwScore homework = new HwScore(4); homework.addScore(26.5,30); homework.addScore(29.0,27.5); homework.addScore(0.0,20.0); homework.addScore(16.0,20.0); homework.printGrade(); homework.printOverallGrade(); } // end main } // end Prog2
//**********************************************
I think the problem is that printGrade() needs to take a parameter but I thought that is what I was doing by declaring (int hwNumber). Do I create another method with that information or is there something wrong with my printGrade method.
Is This A Good Question/Topic? 0
Replies To: Java Error - error: method in class cannot be applied to given types;
#2
Reputation: 2131
- Posts: 8,885
- Joined: 20-September 08
Re: Java Error - error: method in class cannot be applied to given types;
Posted Today, 03:44 PM
Quote
I think the problem is that printGrade() needs to take a parameter
CorrectQuote
but I thought that is what I was doing by declaring (int hwNumber).
That's making it need a parameter. Since you've done that you need to give it a parameter (which you're not doing)
Page 1 of 1
Savages Home Run Derby 2012 San Diego fireworks steve nash july 4th Malware Monday First Row Sports
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.