Search:

Type: Posts; User: xxghostsxx

Search: Search took 0.00 seconds.

  1. Replies
    19
    Views
    1,625

    struct database { int id_number; int age;...

    struct database
    {
    int id_number;
    int age;
    float salary;
    };

    int main()
    {
    database employee; //There is now an employee variable that has modifiable
  2. Replies
    19
    Views
    1,625

    It worked both ways but i understand that it is...

    It worked both ways but i understand that it is not needed
  3. Replies
    19
    Views
    1,625

    Yours seem to work thanks and i also made a...

    Yours seem to work thanks
    and i also made a Division version of that one .
    ^ i know its not that impressing but hey i started reading that tutorial today i didnt Know nothing about c++ before and...
  4. Replies
    19
    Views
    1,625

    #include int mult(int x, int y);...

    #include <iostream.h>

    int mult(int x, int y);

    int main()
    {
    int x, y;
    cout<<"Please input two numbers to be multiplied: ";
    cin>>x>>y;
    cout<<"The product of your two numbers is...
  5. Replies
    19
    Views
    1,625

    Thanks i was about the ask for help again

    Thanks i was about the ask for help again
  6. Replies
    19
    Views
    1,625

    THANK YOU SO MUCH YOU JUST MADE MY DAY :D ...

    THANK YOU SO MUCH YOU JUST MADE MY DAY

    :D

    COOLLLLLLLLL
    Now i can continue the TUTORIAL. thanks again
  7. Replies
    19
    Views
    1,625

    i didnt really understand what you just said i am...

    i didnt really understand what you just said i am Newbie so you going to have to speak in details.thanks

    OK NM i will try
  8. Replies
    19
    Views
    1,625

    Help Please !!!!!!!!

    :confused:

    I am on the second part of the Tutorial on cpprogramming.com
    and i tried the age program


    #include <iostream.h>

    int main() //Most important part of the program!
    {
Results 1 to 8 of 8