{"id":15996,"date":"2020-11-24T09:13:32","date_gmt":"2020-11-24T09:13:32","guid":{"rendered":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/"},"modified":"2020-11-24T09:13:32","modified_gmt":"2020-11-24T09:13:32","slug":"flowchart-pseudocode-programming","status":"publish","type":"post","link":"https:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/","title":{"rendered":"FLOWCHART PSEUDOCODE PROGRAMMING"},"content":{"rendered":"<style type=\"text\/css\"><\/style><p><strong>Rubric:<\/strong><\/p>\n<p><strong>Plan<\/strong><strong>\u00a0<\/strong><strong>2<\/strong><strong>\u00a0<\/strong><strong>points: Provide in your solution folder a Flowchart, pseudocode, photo of of your hand-written plan, or type-written algorithm about how you plan to solve the below problem.<\/strong><strong><br \/>\nFilename:<\/strong><strong>\u00a0<\/strong><strong>Lab8_Plan_YourLastName.docx\/vsdx<\/strong><strong>\u00a0<\/strong><strong>Remember\u00a0<\/strong><strong>Plan First, Then Code.\u00a0<\/strong><strong>That is, you may use any technique for planning that you like as long as you do so, and prove to me in this file that you did so.<\/strong><\/p>\n<p><strong>Code<\/strong><strong>\u00a0<\/strong><strong>8<\/strong><strong>\u00a0<\/strong><strong>points: Zip file of entire solution Folder including planning file.<\/strong><\/p>\n<p><strong>TASK:<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>Create a Folder on your saving location called \u201c<strong>Lab8_YourLastName<\/strong>\u201d<\/p>\n<p><strong>Part 1:<\/strong><\/p>\n<p>In your\u00a0<strong>Lab8_YourLastName<\/strong>\u00a0folder, create a C++ Program called\u00a0<strong>Lab8_YourFirstName_YourLastName.cpp<\/strong><\/p>\n<p>*\u00a0<strong>Scenario:<\/strong><\/p>\n<p>Complete the following C++ program by including the definition for the function named\u00a0<strong>weeklyPay<\/strong>\u00a0that returns weekly pay.<\/p>\n<p>The function has the formal parameter hours to pass the value of the number of hours worked in a week and the formal, parameter rate to pass the value of the hourly rate, the name should be passed as a third parameter, a fourth parameter of type (int, where 1=\u201dfulltime\u201d, 2=\u201dpartime\u201d).<\/p>\n<p>Additional specifications<\/p>\n<p>*Output a dollar sign in from to each weekly pay<\/p>\n<p>*Set precision to 2 decimal places<\/p>\n<p>*Assume 12% FIT rate where hourly rate is less than $15, and 15% otherwise<\/p>\n<p>*Assume\u00a0<strong>full<\/strong>\u00a06.2% Social Security rate<\/p>\n<p>*Assume 1.45% Medicare Rate<\/p>\n<p>*If and only if a full time employee, Assume $17.00 for dental<\/p>\n<p>*If and only if a full time employee, Assume $77.00 Employer contribution toward retirement<\/p>\n<p>*Assume overtime pay a\u00a0<strong>2 times time\u2019s regular rate<\/strong>\u00a0beyond 40 clockedHours for fulltime employees only<\/p>\n<p>*Output to the screen the employees name IN-ALL-CAPS (using toupper()), weekly pay in $, and whether or not he\/she is a full time or partime employee.<\/p>\n<p>*Highlight the employee\u2019s name in color, and leave the rest of the text in black\/white.<\/p>\n<p>For help using toupper(), see\u00a0<u><\/u><u><a href=\"http:\/\/www.cplusplus.com\/reference\/std\/locale\/toupper\/\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.cplusplus.com\/reference\/std\/locale\/toup\u2026<\/a><\/u><\/p>\n<p>*Part-time employees do not get dental, retirement, or overtime benefits.<\/p>\n<p>*Test values (use the names and values below in your code).<\/p>\n<p>o\u00a0<strong>YOURNAME<\/strong>: clockedHours = 47, hourlyRate = 505.75, full time<\/p>\n<p>o Melivin: clockedHours = 45, hourlyRate = 55.25, full time<\/p>\n<p>o Susan: clockedHours = 15, hourlyRate = 65.25, part time<\/p>\n<p>o Mika: clockedHours = 41, hourlyRate = 14.75, full time<\/p>\n<p>o Eldridge: clockedHours = 25, hourlyRate =15.0, part time<\/p>\n<p>o Freedom: clockedHours = 55, hourlyRate =203.50, full time<\/p>\n<p>#include &lt;iostream&gt;<br \/>\nusing namespace std;<\/p>\n<p>double weeklyPay(double, double,string,int);\/\/ function prototype<\/p>\n<p>int main( )<br \/>\n{<br \/>\ncout &lt;&lt; weeklyPay (32.5, 100.25,\u201dTyson\u201d,1) &lt;&lt; endl;<\/p>\n<p>system(\u201cpause\u201d);<br \/>\nreturn 0;<br \/>\n}<\/p>\n<p>double weeklyPay(double hours, double rate, string name, int empType)<br \/>\n{\/\/ complete the function definition<\/p>\n<p>}<\/p>\n<p><strong>Part 2:<\/strong>\u00a0Extending code in an existing C++ file you wrote.<\/p>\n<p><strong>In your int main() function of your Lab8_YourFirstName_YourLastName.cpp above, use the built in<\/strong><\/p>\n<p><strong>tolower()<\/strong><strong>function to convert and output to the screen the following text \u201cTCC-TR IS COOL\u201d<\/strong><\/p>\n<p><strong>\/\/hint: run the (tolower() Function through a loop for each character).<\/strong><\/p>\n<p><strong>toupper()<\/strong><strong>function to convert and output to the screen the following text \u201ci will succeed at c++\u201d<\/strong><\/p>\n<p><strong>\/\/hint: run the (toupper() Function through a loop for each character).<\/strong><\/p>\n<p><strong>Part 3:<\/strong><\/p>\n<p>Download the (below) attached\u00a0<strong>Integer_to_Words_YourLastname.cpp<\/strong>\u00a0(or see below) file and save it to your Lab8_YourLastName folder as\u00a0<strong>Integer_to_Words_YourLastName.cpp (modify filename to have your lastname)<\/strong><\/p>\n<p>Add a comment at the top of the file with your firstname and your lastname, and the date that you modified the program.<\/p>\n<p>Add a function call to the int main() portion of the program that passes the entered\u00a0<strong>number to the EnglishNumber function<\/strong><\/p>\n<p><strong>Hint: this line of code is best entered on line 124<\/strong><\/p>\n<p>Add appropriate C++ Comments to explain the logic behind your chosen method for solving the problem. Comments are also helpful for the reference of future programmers, and for you.<\/p>\n<p>Use the appropriate data types, variables, and constant variables to solve the program<\/p>\n<p>Add a Multiple line C++ comment to the top of the program with your first name, last name, course name section,\u00a0<strong>Name of Text Editor\/Software used to creae the program,<\/strong>\u00a0and the a summary of what the program does.<\/p>\n<p>Save, build and execute your programs being sure that they are free of errors.<\/p>\n<p>Using zip software, Zip the Entire\u00a0<strong>Lab8_YourLastName<\/strong>\u00a0folder naming the resulting file\u00a0<strong>Lab8_YourLastName.zip<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p><center><a href=\"http:\/\/onlineclassesguru.com\/orders\/ordernow\"><img decoding=\"async\" src=\"https:\/\/encrypted-tbn0.gstatic.com\/images?q=tbn:ANd9GcTyj99p60XCLyLk1htB7-1neRt8-2QdnenNlQ&usqp=CAU\"target=\"_http:\/\/onlineclassesguru.com\/orders\/ordernow\"\/><\/center><p>","protected":false},"excerpt":{"rendered":"<p>Rubric: Plan\u00a02\u00a0points: Provide in your solution folder a Flowchart, pseudocode, photo of of your hand-written plan, or type-written algorithm about how you plan to solve the below problem. Filename:\u00a0Lab8_Plan_YourLastName.docx\/vsdx\u00a0Remember\u00a0Plan First, Then Code.\u00a0That is, you may use any technique for planning that you like as long as you do so, and prove to me in this&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-15996","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru\" \/>\n<meta property=\"og:description\" content=\"Rubric: Plan\u00a02\u00a0points: Provide in your solution folder a Flowchart, pseudocode, photo of of your hand-written plan, or type-written algorithm about how you plan to solve the below problem. Filename:\u00a0Lab8_Plan_YourLastName.docx\/vsdx\u00a0Remember\u00a0Plan First, Then Code.\u00a0That is, you may use any technique for planning that you like as long as you do so, and prove to me in this...\" \/>\n<meta property=\"og:url\" content=\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/\" \/>\n<meta property=\"og:site_name\" content=\"onlineclassesguru\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-24T09:13:32+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin_admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineclassesguru.com\/#website\",\"url\":\"https:\/\/onlineclassesguru.com\/\",\"name\":\"onlineclassesguru\",\"description\":\"Cheap Professional coursework and reaction papers help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineclassesguru.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#webpage\",\"url\":\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/\",\"name\":\"FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru\",\"isPartOf\":{\"@id\":\"https:\/\/onlineclassesguru.com\/#website\"},\"datePublished\":\"2020-11-24T09:13:32+00:00\",\"dateModified\":\"2020-11-24T09:13:32+00:00\",\"author\":{\"@id\":\"https:\/\/onlineclassesguru.com\/#\/schema\/person\/1831fa4d28e47b468621cf27932f5742\"},\"breadcrumb\":{\"@id\":\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineclassesguru.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FLOWCHART PSEUDOCODE PROGRAMMING\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineclassesguru.com\/#\/schema\/person\/1831fa4d28e47b468621cf27932f5742\",\"name\":\"admin_admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/onlineclassesguru.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/429c8d043f7a770af242b0031e8b9f2b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/429c8d043f7a770af242b0031e8b9f2b?s=96&d=mm&r=g\",\"caption\":\"admin_admin\"},\"url\":\"https:\/\/onlineclassesguru.com\/index.php\/author\/admin_admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/","og_locale":"en_US","og_type":"article","og_title":"FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru","og_description":"Rubric: Plan\u00a02\u00a0points: Provide in your solution folder a Flowchart, pseudocode, photo of of your hand-written plan, or type-written algorithm about how you plan to solve the below problem. Filename:\u00a0Lab8_Plan_YourLastName.docx\/vsdx\u00a0Remember\u00a0Plan First, Then Code.\u00a0That is, you may use any technique for planning that you like as long as you do so, and prove to me in this...","og_url":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/","og_site_name":"onlineclassesguru","article_published_time":"2020-11-24T09:13:32+00:00","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin_admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/onlineclassesguru.com\/#website","url":"https:\/\/onlineclassesguru.com\/","name":"onlineclassesguru","description":"Cheap Professional coursework and reaction papers help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineclassesguru.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#webpage","url":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/","name":"FLOWCHART PSEUDOCODE PROGRAMMING - onlineclassesguru","isPartOf":{"@id":"https:\/\/onlineclassesguru.com\/#website"},"datePublished":"2020-11-24T09:13:32+00:00","dateModified":"2020-11-24T09:13:32+00:00","author":{"@id":"https:\/\/onlineclassesguru.com\/#\/schema\/person\/1831fa4d28e47b468621cf27932f5742"},"breadcrumb":{"@id":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/onlineclassesguru.com\/index.php\/2020\/11\/24\/flowchart-pseudocode-programming\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineclassesguru.com\/"},{"@type":"ListItem","position":2,"name":"FLOWCHART PSEUDOCODE PROGRAMMING"}]},{"@type":"Person","@id":"https:\/\/onlineclassesguru.com\/#\/schema\/person\/1831fa4d28e47b468621cf27932f5742","name":"admin_admin","image":{"@type":"ImageObject","@id":"https:\/\/onlineclassesguru.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/429c8d043f7a770af242b0031e8b9f2b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/429c8d043f7a770af242b0031e8b9f2b?s=96&d=mm&r=g","caption":"admin_admin"},"url":"https:\/\/onlineclassesguru.com\/index.php\/author\/admin_admin\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/posts\/15996"}],"collection":[{"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/comments?post=15996"}],"version-history":[{"count":0,"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/posts\/15996\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/media?parent=15996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/categories?post=15996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineclassesguru.com\/index.php\/wp-json\/wp\/v2\/tags?post=15996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}