Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~860 People Reached
Favorite Forums
Favorite Tags
c++ x 15
Member Avatar for desidude

guys i am trying to write 3x3 matrix . i am posting the main,.h and .cpp file,main and .h file is given and i have to write .cpp file. can sombody look at it and suggest me solution appricated guys IntMatrix3_h [CODE]#ifndef INTMATRIX3_H #define INTMATRIX3_H #include<iostream> #include<cmath> using namespace std; …

Member Avatar for desidude
0
156
Member Avatar for desidude

Hi; i am trying to write complex.cpp and it gives error message can somebody look and write me back what is wrong here is the program[ three parts] and the error message [CODE] #include<iostream> #include<cctype> #include<cstdio> #include"complex.h" using namespace std; void main(void) { CComplex a; CComplex b(5.5,2.2); CComplex c(b); cout<<"a …

Member Avatar for Rashakil Fol
0
232
Member Avatar for desidude

hi , Please take a moment to read this i am trying to write hexadecimal.cpp program for my C++ programming class but i dont know how to do it. the Project says as follows You have to design and implement a C++ program that reads numbers from a file,converts them …

Member Avatar for Kazastankas
0
251
Member Avatar for desidude

i tried this #include <fstream> #include <iostream> #include <cstdlib> using namespace std; int main() { // Declare input stream ifstream fin; int min, max, val; int isFirst = true; fin.open("inFile.txt"); fin >> isFirst; min = isFirst; max = isFirst; while (fin >> val) { fin >> val; if (val < …

Member Avatar for desidude
0
221