Search:

Type: Posts; User: DJPG5

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,254

    C++ Programming Book

    What is a good programming book to use? I've looked at the two on the front page, but I didn't really like them. What are some of the books that you guys have used?
  2. Thread: Limiting space

    by DJPG5
    Replies
    4
    Views
    847

    exactly

    Thats what i want to do is to read in the date and ignore the slashes. BUT we havent reached that far in class where we take in arrays and strings. basically, i have to read the 02 from the entire...
  3. Thread: Limiting space

    by DJPG5
    Replies
    4
    Views
    847

    Limiting space

    #include <iostream>
    using namespace std;

    struct date
    {
    int month[2];
    int day[2];
    int year[4];
    char dummy[1];
    };
  4. Replies
    2
    Views
    15,611

    Multiple inputs with cin

    #include <iostream>
    using namespace std;

    struct date
    {
    int month[2];
    int day[2];
    int year[4];
    char dummy[1];
    };
  5. Replies
    3
    Views
    102,960

    sweet! i didnt realize that it was that easy! i...

    sweet! i didnt realize that it was that easy! i wonder y a begginers book would not show this way, but show something completely outrageaous. lemme get the book and write their method...
  6. Replies
    3
    Views
    102,960

    setw() - left justify

    im new at programming and i know that setw(x) will justify everything to the right. how can i make everything left justified? i know there is a way b/c it mentions it in the book. but they dont give...
Results 1 to 6 of 6