ID
Password
FlashGuide
FlashGuide
HA Infomation

Off-Topic

  Index

  • C++ Assistance

    04. 25. 2013 07:06


Mishkovic

I'm in college and have recently switched majors to a field I'm more interested in.  While I have experience working on PCs and maintaining them, I have no experience in coding programs.  That said, I am currently taking a first level C++ class to learn but am having trouble with an assignment.  I'm not nessecarily looking for you to do it for me, more along the lines of understanding what I did wrong so I can fix it and learn the right way.  Is anyone fairly skilled at C++ that would be willing to help out?

 

  • Re : C++ Assistance

    05. 07. 2013 13:09


normpearii

I'm an Alumni Programming lead (Windriver C++) From a FIRST Robotics competition team.


I can point out most basic errors. I am sure there is other on here as well that can assist.


If I get time later today I'll post my C++, C# and C reference bookmarks. 

  • Re : C++ Assistance

    05. 07. 2013 13:35


Clixer

I know a bit of C++ and I'm not a pro or anything, though I'd be more than willing to (try to) help.

  • Re : C++ Assistance

    05. 09. 2013 07:01


Elliot2lazy

This was my first assignment for when I used C++. Here is the coding, and maybe it will help you better understand the assignment. I used the program code blocks.

between the {} put in this...

// making "b" the variable for the base length of the triangle.
    float b;

    // making "h" the variable for the height of the triangle.
    float h;

    // beginning of the program.
    cout << "Enter the Base length of the Triangle:" << endl;
    cin >> b;

    cout << "Enter the height of the Triangle" << endl;
    cin >> h;

    // declaring "A" as the variable for the area of the triangle.
    float a;
    a = b * h/2;

    cout << "The area of the triangle is:" ;
    cout << a << endl;


    return 0;

1