Search:

Type: Posts; User: yosimba2000

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    1,981

    ok thx BMJ, so ELSE does not have any arguments...

    ok thx BMJ, so ELSE does not have any arguments right? it just stays as else.
  2. Replies
    16
    Views
    1,981

    to the guy above me, i think you learn much...

    to the guy above me, i think you learn much faster than me. i don't even understand how the switch/case works AND i did not yet learn this Doagain command. im using this tutorial: C++ Made Easy:...
  3. Replies
    16
    Views
    1,981

    hey thanks for that && tip, totally forgot about...

    hey thanks for that && tip, totally forgot about it. but can you clarify where i typed te same thing twice? i can't find it.
  4. Replies
    16
    Views
    1,981

    lol i just started yetserday too! im on pointers...

    lol i just started yetserday too! im on pointers now but if anyone knows the answer to my new question like about 3 posts up, feel free to tell me..
  5. Replies
    16
    Views
    1,981

    well i was trying to make it so that 41

    well i was trying to make it so that 41 <= age <= 60. i didn't know how to do it since the compiler wouldnt accept the " 41 <= age <= 60 " form, so i split it using a comma. what is the proper way...
  6. Replies
    16
    Views
    1,981

    If, Else if, Else Help!

    im using dev-c++ compiler, and i keep getting an error on this bolded line of code

    #include <iostream>
    using namespace std;
    int main()
    {
    int age;
    cout<< "Please input your age...";
    ...
  7. Replies
    10
    Views
    3,855

    ok so you guys are saying that the header called...

    ok so you guys are saying that the header called iostream contains many different namespaces, and that the name spaces themselves contain different functions? so it's like a cabinet with a bunch of...
  8. Replies
    10
    Views
    3,855

    c++ definitions and explanations help

    the beginner tut. tells me some defintions and reasons of some stuff inside the code
    #include <iostream>

    using namespace std;

    int main()
    {
    cout<<"Hello,World!\n";
    cin.get();
  9. Replies
    4
    Views
    1,007

    cin.get() question

    what are the parenthesis in
    cin.get() used for?
  10. Replies
    2
    Views
    1,428

    Help on Boolean Operators?

    I'm reading this tutorial about boolean operators, but i dont get one example: . The tutorial says that the AND must be evaluated before OR, yet I see the OR before the AND in the example. Can...
Results 1 to 10 of 10