Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
3
1 Commented Post
0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 36
Member Avatar for biancaW

hi, i need help with this: Assume that your computer has the very limited capability of being able to read and write only single-integer digits and to add two integers consisting of one decimal digit each. Write a program that can read two integers up to 30 digits each, add …

Member Avatar for abhimanipal
0
182
Member Avatar for biancaW

How do you sort names alphabetically using functions in C++ from file? After the last set of words has been processed the program is to print out a) the number of sets processed b) the number of sets that were in alphabetical order to start with, and needed no rearranging. …

Member Avatar for thekashyap
0
127
Member Avatar for biancaW

please someone edit this code for me. I do not know how to write the logic part in the function 'TestAnagram' when i debug it, it shows the same word twice instead of showing two different words using the same letters in different order . [CODE]#include <iostream> #include <string> #include …

Member Avatar for L7Sqr
0
401
Member Avatar for biancaW

I have another question regarding activating of an automatic door: three sensors front pad, rear pad, and door; they determine weather the door is activated or not. front pad=0 empty front pad=1 occupied rear pad=0 empty rear pad=1 occupied door=0 closed door=1 open there are situations when the door is …

Member Avatar for fishsicles
0
245
Member Avatar for biancaW

is there another way to write this code other than using bool for validation [CODE]bool isValid = true;[/CODE]

Member Avatar for arkoenig
0
72
Member Avatar for biancaW

please make this code work for many inputs not just two inputs then it terminates [CODE] #include <iostream> // requires for keyboard and screen I/O #include <conio.h> // for getch using namespace std; void main () { // local values int frontPad; int rearPad; int door; // output to screen …

Member Avatar for WaltP
-1
83
Member Avatar for biancaW

please check this code : [CODE]#include <iostream>// requires for keyboard and screen I/O #include <conio.h> using namespace std; void main () { int frontPad=0; int rearPad=0; int door=0; cout << "Welcome" << endl; cout << " Enter either 0 or 1 for state of the\n Front Pad,\n Rear Pad,\n and …

Member Avatar for vinayakgarg
0
145
Member Avatar for biancaW

hi, could someone help me fix the code for the following question: I need to create a program that determines the animal corresponding to an input year of birth. Assume that the input year is 1900 or later. The 12-year animal cycle is rat, ox, tiger, rabbit, dragon, snake, horse, …

Member Avatar for rxlim
0
732
Member Avatar for biancaW

could you write a program that process the weekly payroll of the Brooks Leather Company (BLC). For each employee of BLC the program will compute the gross pay, deductions, and net pay. Each week BLC enters the following information into a data file called 'paydata' for all the employees: Social …

Member Avatar for arkoenig
-3
99
Member Avatar for biancaW

I need help to create C++ program for this question Input the price of a product and the tax code (R or L).If the code is ‘R’ the tax rate is 8% and the rate is 12% for ‘L’. Calculate the total price and tax paid for the product. Continue …

Member Avatar for arkoenig
0
280
Member Avatar for biancaW

I have this question. could anyone help me how to write C++ code for it: A bank account starts out with $10,000. Interest is compounded monthly at 6% per year (0.5% per month). Every month, $500 is withdrawn to meet college expenses. After how many years is the account depleted? …

Member Avatar for jonsca
0
2K