Search:

Type: Posts; User: mejv3

Search: Search took 0.01 seconds.

  1. Replies
    23
    Views
    23,732

    Thanks dwks for taking the time to help me...

    Thanks dwks for taking the time to help me improve.
  2. Replies
    23
    Views
    23,732

    Here is my final code that I am turning in. I...

    Here is my final code that I am turning in. I know it's a mess, but I have to turn it in just a few hours from now. Their was a lot of stuff I threw in because of problems with 0's and '0''s.
    Thank...
  3. Replies
    23
    Views
    23,732

    How do I find how many digits are in the string...

    How do I find how many digits are in the string after the user inputs them?
    The compiler won't let me use strlen because they are numbers. I"m not firing any other function to use.
  4. Replies
    23
    Views
    23,732

    I'm having a tuff time figuring out how to pad...

    I'm having a tuff time figuring out how to pad the numbers with zeros after the user has input them. I was going to use strncpy and copy the string to itself, but the compiler doesn't like that.
    ...
  5. Replies
    23
    Views
    23,732

    Thank you for your help so far, my program has...

    Thank you for your help so far, my program has come a long way. It is currently working except when the last number has a carry or the number isn't the same length of digits.
    I know I"m going to...
  6. Replies
    1
    Views
    3,359

    Adding a Large number digit by digit

    I posted a previous thread but it is pretty much dead, so here is a new one.

    I'm trying to add to very large numbers digit by digit that the user inputs.
    I have it working as long as the numbers...
  7. Replies
    23
    Views
    23,732

    Here is my code now: int main(int argc,...

    Here is my code now:



    int main(int argc, char* argv[])
    {
    unsigned char number1 [256] = {0};
    unsigned char number2 [256] = {0};
    unsigned char result [256] = {0};
    int i, y=0, x=0, sum=0,...
  8. Replies
    23
    Views
    23,732

    Adding a Large number digit by digit

    Hi, I need to write a program where the user inputs 2 numbers and the program will add these two numbers together digit by digit because it has to be able to handle huge numbers. I am storing the...
  9. Replies
    6
    Views
    1,300

    the stdafx placement helped me out a bit I was...

    the stdafx placement helped me out a bit

    I was able to fix all the problems from there
    thanks
  10. Replies
    6
    Views
    1,300

    Is there a way to make visual c++ express do that?

    Is there a way to make visual c++ express do that?
  11. Replies
    6
    Views
    1,300

    Need Help with Inheritance assignment

    Here are my instructions:

    Create an “Animal” base class. This class will have size, weight, and eyeColor as instance variables. It will have walk() and print() as methods.

    Create a “Dog”...
  12. Replies
    3
    Views
    1,199

    Thanks. That actually helps alot. I will get...

    Thanks. That actually helps alot.
    I will get back and let you know if I have any problems.
    By putting the rabbit class together with the main.cpp, you mean just make sure the names are the same,...
  13. Replies
    3
    Views
    1,199

    need help with class based string

    I have an assignment where I hav eto use a string. I kinda know how to use the pointer based string, but don't really know how to use class based string, so thats the reason for this post...

    This...
  14. Replies
    15
    Views
    2,615

    thanks

    thanks
  15. Replies
    15
    Views
    2,615

    RF: This is an online class and I only have the...

    RF:
    This is an online class and I only have the textbook to go by, which is
    confusing to me. The teacher doesn't post any lectures to help us out.

    Enahs: I just need to know to build the...
  16. Replies
    15
    Views
    2,615

    Whoa, that just confused me so much. I'm a newbie...

    Whoa, that just confused me so much. I'm a newbie at this stuff.
  17. Replies
    15
    Views
    2,615

    Need help on my homework

    Here are my directions:

    Construct a C++ class named “Cruncher” that implements a “factorial” method. The “factorial” method shall take an integer parameter, validate the parameter’s value as...
Results 1 to 17 of 17