Search:

Type: Posts; User: Fulwin

Search: Search took 0.01 seconds.

  1. Thread: Getting a Job

    by Fulwin
    Replies
    31
    Views
    3,776

    Thank you for the good response, nadroj. I am...

    Thank you for the good response, nadroj.

    I am a bit unmotivated when it comes to computer science or programming. What I'm looking for is not necessarily to get good at programming (although I...
  2. Thread: Getting a Job

    by Fulwin
    Replies
    31
    Views
    3,776

    The most I learned was a little bit of...

    The most I learned was a little bit of programming. I don't know if I could program anything in the real world. When I look at open source stuff for the possibility of getting in some practice or...
  3. Thread: Getting a Job

    by Fulwin
    Replies
    31
    Views
    3,776

    I am soon to graduate with a bachelor's degree in...

    I am soon to graduate with a bachelor's degree in Applied Computer Science. I wanted a degree so I could get a job and move out of my parents' house. I made a bad decision, because it seems computer...
  4. Thread: Getting a Job

    by Fulwin
    Replies
    31
    Views
    3,776

    Getting a Job

    After going thoroughly going through the 6 C++ books recommended by this site to become an expert, what's the next step? How do you go from those books to getting a job? Is it enough?
  5. Thread: Need some help

    by Fulwin
    Replies
    9
    Views
    1,644

    No, it's still 34. I tried this though #include...

    No, it's still 34. I tried this though
    #include <iostream>

    int main(){
    float f;
    int i;
    f = 0.35;
    f *= 100;
    i = f;
    std::cout << i << std::endl;
  6. Thread: Need some help

    by Fulwin
    Replies
    9
    Views
    1,644

    I tried that, and it still didn't work. However,...

    I tried that, and it still didn't work. However, I was getting the warning "truncation from double to float" on this line
    f = 0.35;I tried changing it to a double, and it works now. Given that the...
  7. Thread: Need some help

    by Fulwin
    Replies
    9
    Views
    1,644

    Yeah. Using exactly this code: #include...

    Yeah. Using exactly this code:
    #include <iostream>

    int main(){
    float f;
    int i;
    f = 0.35;
    i = f * 100;
    std::cout << i << std::endl;
  8. Thread: Need some help

    by Fulwin
    Replies
    9
    Views
    1,644

    Ok, I tried working with pennies. I did this...

    Ok, I tried working with pennies. I did this after getting money as a float from user:
    pennies = (money * 100); // stores money as penniesIt stores the wrong amount sometimes. If I put in 0.35, it...
  9. Thread: Need some help

    by Fulwin
    Replies
    9
    Views
    1,644

    Need some help

    I am learning C++, working through the books recommended by this website. I'm trying to code Exercise 6-3 of Practical C++ Programming. Here's the problem:

    Given an amount less than $1.00, compute...
  10. Replies
    4
    Views
    1,094

    What is a prototype? I changed the code to use...

    What is a prototype? I changed the code to use strings instead of chars and getline() instead of cin. I am still getting these 3 errors:

    error C3861: 'printCheck': identifier not found, even with...
  11. Replies
    4
    Views
    1,094

    Little help please

    Here is what I'm working on:

    Write and test two functions enterData() and printCheck() to produce the sample paycheck illustrated in Figure 7-21 on the screen (not including the boxed outline)....
Results 1 to 11 of 11