User Profile

Collapse

Profile Sidebar

Collapse
promiscuoustx
promiscuoustx
Last Activity: Oct 28 '06, 11:59 PM
Joined: Sep 8 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • promiscuoustx
    replied to C++ Mortgage Schedule...Please help!!
    in C
    I have almost got everything worked out to the end, but can you please explain to me why it is hanging on line 170?
    Code:
    MortSched(fLoanAmount, fInterestRate, fYears);
    It says that fLoanAmount and the others are not declared, but I declared them in my structure at the beginning of the program? I am REALLY new to programming and so far I have been treated like an idiot from all the other forums I have asked. I am not a software person at all. I am...
    See more | Go to post

    Leave a comment:


  • promiscuoustx
    started a topic C++ Mortgage Schedule...Please help!!
    in C

    C++ Mortgage Schedule...Please help!!

    I am trying to get my program to compile, but it will not complete. At line 79 it states, cannot convert 'float()()' to 'float' in assignment. Here is my code.

    Code:
    #include <iostream>		
    #include <iomanip>
    #include <cmath>	
    #include <cctype>
    #include <stdlib.h>
    #include <sstream>	
    
    using namespace std;
    
    void MortSched(double, double, int);
    ...
    See more | Go to post

  • promiscuoustx
    replied to C# help
    in .NET
    Are you using Front Page Editor or Dreamweaver or any others??? I highly recommend you look at the website below, because you are trying to write HTML code, but your code is not outputting what you want your users to see.

    http://www.webdesignfr omscratch.com/

    Look around on this site, and remember to use a basic text editor...such as notepad in Windows. And always remember your tags when coding. One bad tag can result...
    See more | Go to post

    Leave a comment:


  • promiscuoustx
    replied to C# help
    in .NET
    This looks more like designing a web page to me. But, I understand where you are wanting to go with this. Let me see what I can make of this....
    See more | Go to post

    Leave a comment:


  • promiscuoustx
    replied to C# help
    in .NET
    You may want to include the code you have started so the moderators have something to work with. When you put your code on the site, use
    Code:
    ...insert code here....
    Just a little advice from another newbie!! :-)
    See more | Go to post

    Leave a comment:


  • promiscuoustx
    replied to Validate user input in C++
    in C
    So should I change double a; to string a;? I am really lost on this.
    See more | Go to post

    Leave a comment:


  • promiscuoustx
    started a topic Validate user input in C++
    in C

    Validate user input in C++

    Hi again all!! I am trying to write my program below to validate user input. In other words, if the user inputs something like "1a2.34", I need to return a message that states invalid data and for them to retry. I am really lost on this one, and I really need some help. Thanks so much!!
    Code:
    #include <iostream>		
    #include <iomanip>
    #include <cmath>	
    #include <cctype>
    #include <string>
    ...
    See more | Go to post

  • This is the code I have so far.....any help would be most appreciated!!!
    Code:
    #include <iostream>        
    #include <iomanip>
    #include <cmath>
    #include <cctype>        
            
    
    using namespace std;
    int main()
                    
    {
         double a; //This is the amount of the mortgage the user must enter
         double i; //This is the interest rate the
    ...
    See more | Go to post

    Leave a comment:


  • I have being trying to figure out how I can validate my code using isdigit(), but I am not sure if I can use isdigit() when there is more than one number. I was also told to try islanum(), but I have never heard of this and unsure what it is used for.
    See more | Go to post

    Leave a comment:


  • Ok, maybe I was not making myself clear. Attached is exactly what my instructor said....that might help....

    "Modify the mortgage program to input the amount of the mortgage, the term of the mortgage, and the interest rate of the mortgage. Display the mortgage payment amount. Allow the user to loop back and enter new data or quit. Insert comments in the program to document the program. This program should still be a procedural...
    See more | Go to post

    Leave a comment:


  • Trapping Bad Entries in a C++ Mortgage calculator program

    The problem is that my code below used to run wonderfully, until the instructor decided that he wants to use characters instead of integers, and wants my code to trap the bad and have the program state that the user did not imput the correct values. Can someone help me figure out how to make my code work that way??? I have the majority of the code done.....but... .I still need that last step!! Thanks!!
    Code:
    #include <iostream>
    ...
    See more | Go to post
No activity results to display
Show More
Working...