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]3 Replies - 64 Views - Last Post: Today, 10:00 AM
#1
Reputation: 0
- Posts: 31
- Joined: 01-October 12
Posted Today, 06:46 AM
I am trying to make a total for each calulation, its like adding all the numbers, then adding all the squareroot numbers, then cubednumbers, each of them have seperate totals.
#include<iostream> #include<math.h> #include<iomanip> using namespace std; int main() { printf("x x ^ 2 x ^ 3 sqrt(x) \n==========================================\n"); for (int i = 1; i <= 10; i++) { double num; num = (double) i; printf("%d \t %2d \t %2d \t %.1f\n", i, (int)pow(num,2.0), (int)pow(num,3.0), sqrt(num),"/n"); } printf("==========================================\n"); printf("Total:\n"); printf("==========================================\n"); return 0; }
Is This A Good Question/Topic? 0
Replies To: (C++) adding all the numbers up in each section.
#2
Reputation: 1797
- Posts: 5,346
- Joined: 05-May 12
Re: (C++) adding all the numbers up in each section.
Posted Today, 06:50 AM
Instead of printing the results of each calculation straight to the console using printf(), store the results into variables, and then have another set of variables that are the sums.
#3
Reputation: 5
- Posts: 33
- Joined: 10-October 12
Re: (C++) adding all the numbers up in each section.
Posted Today, 07:06 AM
I agree with Skydiver.Adding to that,I think it would be better to declare the variable num outside the for loop.
#4
Reputation: 0
- Posts: 31
- Joined: 01-October 12
Re: (C++) adding all the numbers up in each section.
Posted Today, 10:00 AM
Skydiver, on 17 April 2013 - 06:50 AM, said:
Instead of printing the results of each calculation straight to the console using printf(), store the results into variables, and then have another set of variables that are the sums.
How would i go about doing this?
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/318771-c-adding-all-the-numbers-up-in-each-section/
jr smith chris anderson rondo suspended bay bridge band of brothers presidents george washington



কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন