Recent content by Natr0n
-
Plotting isoclines corresponding to slopes m = +1 and m -1?
Seems correct except in You don't need \pm because you're taking the cube root not the square root.- Natr0n
- Post #2
- Forum: Calculus and Beyond Homework Help
-
Equilateral triangle expressed as function
It seems that you want to express the area of an equilateral triangle as a function of its side length. First, the area of any triangle is indeed 1/2(base * height). Let x be the side length of the equilateral triangle, then the area of the triangle is A(x) = 1/2(x * height). Now you need to...- Natr0n
- Post #2
- Forum: Precalculus Mathematics Homework Help
-
Step-by-Step Guide to Setting up MPICH on a Mac with an IDE
Have you seen http://mpich.darwinports.com/" yet?- Natr0n
- Post #2
- Forum: Programming and Computer Science
-
Help with STL container list for INformation Manager
To get the address including the spaces you would use http://www.cppreference.com/wiki/string/getline" as follows: getline(cin, add);- Natr0n
- Post #14
- Forum: Programming and Computer Science
-
Help with STL container list for INformation Manager
Great. That's not really the point though. The problem is that that a statement like cin >> card.getFirst(); isn't going to work. Actually, the method probably should be written something like this: void Rolodex::Add() { string first, last, add, occ, phone; cout << "Creating new Card "<<...- Natr0n
- Post #11
- Forum: Programming and Computer Science
-
Help with STL container list for INformation Manager
void Rolodex::Add(Rolocard card) { string first, last, add, occ, phone; cout << "Creating new Card "<< endl; cout << "----------------------"<<endl; cout << "Enter First Name: " << endl; cin >> card.getFirst(); //problem cout << "Enter Last Name: "<< endl; cin >> card.getLast()...- Natr0n
- Post #9
- Forum: Programming and Computer Science