Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~26.3K People Reached
Favorite Tags

45 Posted Topics

Member Avatar for poloblue
Member Avatar for Mike Askew
0
134
Member Avatar for poloblue

Good Afternoon, I'm stuck in the last part of the assignment, can anyone help me out. The assignment is the following: Create an HTML page with a list of four list items (ordered or unordered), and create a text box and button. When the button is clicked, if there is …

Member Avatar for poloblue
0
102
Member Avatar for poloblue

Good Evening, Can anyone help me with the mathematical formula for investment. This the problem that I have to workout Write a program to find future value of monthly investments. Start with an initial investment, make a deposit every 30days, calculate interest on principle compounded daily, display a table showing …

Member Avatar for poloblue
0
2K
Member Avatar for poloblue

For the MIPS assembly instructions below, what are the corresponding C statements. a) addi f, f, 4 b) add f, g, h sub f, i, f So far, I have this but I don't if it is correct. a) f = (f + 4); b) f = g + h …

Member Avatar for DeanMSands3
0
53
Member Avatar for bettybarnes
Member Avatar for poloblue

Good Afternoon, I'm having a little trouble with a class. The error that I'm getting is: a nonstatic member reference must be relative to a specific object in the function void B::printStatic() { cout<<"size is "<<size<<endl; Here is the code that I have. #include <iomanip> #include <iostream> #include <string> using …

Member Avatar for poloblue
0
2K
Member Avatar for poloblue

Good Morning, I just want to know how to implement a body initilization in a class. Below is the class information. class A { private: const int size; //a const data member char *cat; public: A(); //default constructor A(const int n); //constrcutor with parameter void print(); //print A ~A(){delete[] cat;}; …

Member Avatar for Stagnant
0
139
Member Avatar for poloblue

Hi, I don't get the meaning of this question: change B and C inheritance to public and protected respectively This are the classes and their inheritances that I have: class A { public: int a; A(); //default constructor A(int, int, int); //another constructor ~A(); //destructor void printA(); //printA protected: int …

Member Avatar for NathanOliver
0
140
Member Avatar for poloblue

Good Morning, I'm a little difficulty in writing and implementing a function that read a list of words of variable lengths and convert all letters to upper case. Ask the user to enter the size of the list. I shall use an array as pointers. So far, I have this, …

Member Avatar for WaltP
0
209
Member Avatar for poloblue

Good Afternoon, I'm a little difficulty with this little program. The error is argument of type int (*)[5] is not incompatible with parameter of type double. I'm getting this error on swapFour(&a, &b); Here is the whole program code double a =102.39, b=201.59; double c=30.99, d=48.99; double e=55.21, f=95.35; //call …

Member Avatar for WaltP
0
169
Member Avatar for poloblue

Good Afternoon, I'm fairly new to C++ programming, right now I'm having difficulties completing an assignment that consist of a student database. I really appreciated if someone would help me or give me some guidelines to complete the assignment. The assignment consists of that the database only generates one text …

Member Avatar for deceptikon
0
196
Member Avatar for poloblue

Good Afternoon, I'm having some difficulties on an assignment where I need to write a program which will generate a list of signed random numbers, find the average of all the numbers, the average of the positive and negative numbers and the largest e number. So far I have this …

Member Avatar for poloblue
0
328
Member Avatar for poloblue

Good Afternoon, How would you solve a question that states: assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the pseudocode to find the record with a specific studentID if every single student ID from 101 …

Member Avatar for NathanOliver
0
280
Member Avatar for poloblue

Good Afternoon, I'm reviewing structs, but don't get the concept very well. Assume the following structure declaration is given struct Rectangle { int length; int width; }; write a function that returns a Rectangle structure. The function should store the user's input in the members of the structure before returning. …

Member Avatar for poloblue
0
201
Member Avatar for poloblue

Good Afternoon, I'm having problems with my program that deals with fractions. The problems are with the functions multiply and divide that are not working correctly. So far I have this code. CPP FILE: #include <iostream> #include <cmath> #include "hw4_head.h" using namespace std; int main () { int a, b, …

Member Avatar for poloblue
0
146
Member Avatar for poloblue

Good Afternoon, How do you write a two nested do-while loops to display the pattern: * ** *** **** ***** ****** So far I have this code, but it just displays ****** int i=0; do{ cout<<'*'; i++; }while(i<5); cout<<endl;

Member Avatar for poloblue
0
1K
Member Avatar for poloblue

Good Afternoon, I'm having some problems with a problem that deals with raising the power of an integer. So far I have this code. #include <iostream> #include <cmath> using namespace std; int main() { int num, bigNum, power, count; cout << "Enter an integer: "; cin>>num; cout << "What power …

Member Avatar for mike_2000_17
0
281
Member Avatar for poloblue

Hi, I trying to let the user input how many numbers that they want to average and outputting the average of those numbers. I have this code, but not working as aspected. #include <iostream> using namespace std; int main () { int numCount, total; double average; cout << "How many …

Member Avatar for triumphost
0
218
Member Avatar for poloblue

Good Afternoon, I'm having trouble process 2-D arrays to store and process data. I have problems with implementing the void grading function and void showgrades function So far I have this code: Cpp file: #include <iostream> #include <fstream> #include <string> #include <cstring> #include <cmath> #include <cstdlib> #include <iomanip> #include "lab_20_head.h" …

Member Avatar for poloblue
0
1K
Member Avatar for poloblue

Good Afternoon, I'm having difficulties with a program that deal getting the letters frequencies from an input text file. So far I have this code. Cpp file: #include <iostream> #include <fstream> #include <string> #include <cstring> #include <cmath> #include <cstdlib> #include <iomanip> #include "lab_19_head.h" using namespace std; int main( ) { …

Member Avatar for Ancient Dragon
0
98
Member Avatar for poloblue

Good Afternoon, I'm having trouble with an assignments that deals with arrays. I'm stuck in the part that says Decide whether the value entered by the user at (2) is in the array numbers[SIZE] or not. So far I have this code #include <iostream> #include <fstream> #include <string> #include <cstring> …

Member Avatar for poloblue
0
139
Member Avatar for poloblue

Good Afternoon, I'm having problems with my school assignment that is about a loan program. Here are the details what the program needs to do. You are required to write a loan program for the Rio Grande Bank. This program will print an amortization table for a loan, given the …

Member Avatar for poloblue
0
7K
Member Avatar for ASFtlink

Good Afternoon, I'm getting the error: coversion from double to const int, possible loss of data on case '+' on addGame function on the cpp file error: conversion from double to const int possible loss of data on case '-' on minuGame function in the cpp file error: conversion from …

Member Avatar for Lucaci Andrew
0
311
Member Avatar for poloblue

Good Afternoon, I'm getting this errors on the program: warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of data warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of data warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of …

Member Avatar for Schol-R-LEA
1
1K
Member Avatar for poloblue

Good Afternoon, I 'm new to C++ programming, and I have to do a program that deals with nested loops. Can anyone please check the code that I have for PART C and PART D of the program. Here is the code of the program. #include <iostream> #include <fstream> #include …

Member Avatar for TrustyTony
0
213
Member Avatar for poloblue

Good Afternoon, I want to convert this if-else statement to a switch statement. The if-statement is: int x; cout<<"GIve me an int and I tell you whether is even of odd "; cin>>x; if (x%2==0) cout<<x<<" is even."<<endl; else cout<<x<<" is odd."<<endl;

Member Avatar for poloblue
0
103
Member Avatar for poloblue

Good Afternoon, I'm having problems with this assignment that deals with loops that implements the continue statement. Can someone check the loops that I have implemented on Part B and Part C that must have the continue statement. Here is the code #include <iostream> #include <fstream> #include <string> #include <cstring> …

Member Avatar for mcriscolo
0
153
Member Avatar for poloblue

Good Afternoon, The program that I'm doing with function doesn't want to run, the error that pops out is: 'std::basic_istream<_Elem,_Traits> std::operator >><std::char_traits<char>>(std::basic_istream<_Elem,_Traits> &,signed char *)' Here is the code and header file that I have so far: CPP FILE #include <iostream> #include <fstream> #include <string> #include <cstring> #include <cmath> #include …

Member Avatar for poloblue
0
506
Member Avatar for poloblue

Good Afternoon, I'm having trouble with loops that deal with enumeration. So far I have this code #include <iostream> #include <fstream> #include <string> #include <cstring> #include <cmath> #include <cstdlib> #include <iomanip> using namespace std; int main( ) { //enumerate type definition enum weekDays {Monday, Tuesday, Wednesday, Thursday, Friday, Saturday,Sunday}; //variable …

Member Avatar for Lucaci Andrew
0
301
Member Avatar for poloblue

Good Afternoon, I'm having problems with the termination of C++ program that deals with else if statements within a while loop. Below is the code that I have so far. while (choice != 'y') { //get the choice cout<<"What is your choice? ('a' to 'd', or 'A' to 'D') =>"<<endl; …

Member Avatar for Lucaci Andrew
0
121
Member Avatar for poloblue

Hi, I just to know what code should I use to terminate the program when the user input the character n. Here is the code I have so far

Member Avatar for poloblue
0
110
Member Avatar for poloblue

Good Afternoon, I'm new to C++ programming and I have to do a program that deals with strings. Below is the code that I have so far, I have problems in this section of the program Get three lines from the keyboards. Play with string copying, concatenation, and input size …

Member Avatar for m4ster_r0shi
-1
140
Member Avatar for poloblue

Good Afternoon, This is my first class in C++ and I'm having problems with a program that needs to print a calendar of June, July and August 2008 into the output file "outCalendar.txt" . I should format the result for month well so that it looks like a real calendar …

Member Avatar for Schol-R-LEA
0
401
Member Avatar for poloblue

Good Afternoon, I'm new to socket programming, and the assignment that I have to do with Server/Client socket programming which I have to write server and client programs to send text across Transport Service Access Points (TSAPs) also known as TCP ports or Sockets. Your program can select any non-privileged …

Member Avatar for Momerath
0
258
Member Avatar for poloblue

Good Afternoon, I'm new to C# programming and I'm taking Networking this semester. The professor asks to write a program in C# Write a program to discover the IP address of your machine. Also an interesting modification to this program is to give the host name and let the program …

Member Avatar for sknake
0
176
Member Avatar for poloblue

Good Afternoon, I'm new to assembly and I have to do a small MIPS program. The details of are: You can simulate the algorithm for 16 bits integers, not 32 bits integers. More specifically, we have two integers of 16 bits as input, add those two integers and get a …

Member Avatar for AceStryker
0
102
Member Avatar for poloblue

Good Afternoon, The question that I have is regarding file system (NTFS) If you allow user1 access to a folder using windows shared folders, and remove all local (NTFS) permissions for all users, what happens? Thank you

Member Avatar for rch1231
0
58
Member Avatar for poloblue

Good Morning, I'm new to javascript and the professor ask us to do a javascript program of future value calculation program. The details are: Write a program to find future value of monthly investments. Start with an initial investment, make a deposit every 30days, calculate interest on principle compounded daily, …

Member Avatar for poloblue
0
2K
Member Avatar for poloblue

I'm new in using MySQL and I have to do a project where I should implement 6 queries within the database that I have created. The queries that should be implemented are union query, aggregation query, nested query, and three join query. Here is the script for the database. [CODE]create …

Member Avatar for crishjeny
0
249
Member Avatar for poloblue

Good Afternoon, I'm having trouble with a school assignment. The assignment entails: Write the implementation of the function subsequence for the orderedArrayListType class. Also write a program to test your function. Prototype: bool orderedArrayListType::subSequence (orderedArrayListType &S,orderedArrayListType &L); Definition: subsequence returns true if S is a subsequence of L, false otherwise. …

Member Avatar for poloblue
0
159
Member Avatar for poloblue

Good Morning, I'm having this error in the program " object in abstract class orderedArrayListType is not allowed. Here is the code: arrayListType.h [CODE]#ifndef H_arrayListType #define H_arrayListType class arrayListType { public: bool isEmpty() const; //Function to determine whether the list is empty //Postcondition: Returns true if the list is empty; …

Member Avatar for poloblue
0
511
Member Avatar for poloblue

Good Afternoon, Can someone help me with this program which is an assignment for a class. I'm new to C++ its my fist course in computer science. The assignment details are: 1. The function removeAt of the class arrayListType removes an element from the list by shifting the elements of …

Member Avatar for poloblue
0
2K
Member Avatar for poloblue

Good Afternoon, I need help on this assignment from school, I'm getting this error C2660: 'clockType::setTime' : function does not take 4 arguments. I need to make the class functional by the client program testClockClass.cpp. Below are the code that I have so far: testClockClass.ccp [code] #include <iostream> #include "extClockType.h" …

Member Avatar for Narue
0
311
Member Avatar for poloblue

Good Afternoon, I'm having problems with a program that I have to do for school. It deals with pointType class and the main program section. The details of what the program should do are the following: Define and implement a class poinType that implements a point (x,y). The class pointType …

Member Avatar for poloblue
0
719
Member Avatar for seoravikant

Name - Justin Nickname - Jus Height - 5' 9" Weight - 155 lbs Hair - black Eyes - brown Location - Texas Age - turning 25 next month Hobbies - lounging around on the computer and racing in my mustang Relationship Status - single Fav Music - oldies, hip-hop, …

Member Avatar for AndreRet
0
217

The End.