Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~448 People Reached
Favorite Forums
Favorite Tags
c++ x 8
Member Avatar for youngone

This assignment I must read this .DAT file the instructor has given to me, and print out the information from it. The .DAT file is for a two-way array It has 6 rows and 8 colloumns well I have ran into a couple of problems [code] #include <iostream.h> #include <fstream.h> …

Member Avatar for John A
0
131
Member Avatar for youngone

[code] #include <iostream> // stream #include <cmath> // math functions #include <cctype> // toupper using namespace std; int main() { int jul1; int jul2; int diff; int jdate; int toupper; char ans = 'Y'; do { jul1 = jdate(); /* Term does not evaluate to a function */ jul2 = …

Member Avatar for John A
0
196
Member Avatar for youngone

"Develop a program that can be used to calculate the number of days between any two days from 1/1/1900 through 12/31/2099 The main program will call the same function twice- once for each date and have an integer returned to it each time. The function will prompt for a year, …

Member Avatar for WaltP
1
121