Search:

Type: Posts; User: cprogstudent

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,149

    I would but how exactly do I implement the loop?...

    I would but how exactly do I implement the loop? where do i put it? should it be after each case or can it be at the end of all cases?
  2. Replies
    6
    Views
    1,149

    I think I mislead u and I apoligize for it. The...

    I think I mislead u and I apoligize for it. The program u wrote does not ask wether or not the user wants to continue using the program or not (If answer is YES, use the previous answer as the first...
  3. Replies
    6
    Views
    1,149

    Help with looping

    I wrote a switch program that performs 4 basic math operations:


    #include <iostream.h>

    int main(){
    int ch;
    float m1,m2,mt,d1,d2,dt,a1,a2,at,s1,s2,st;

    cout<<"Please select a number from...
  4. Replies
    11
    Views
    1,306

    THX for all the help guys i really appreciate it....

    THX for all the help guys i really appreciate it. When I said CS i meant the game counter-strike:cool:
  5. Replies
    11
    Views
    1,306

    THX so much for all the help!

    THX so much for all the help!
  6. Replies
    11
    Views
    1,306

    this works out perfectly hkmp5 (u play CS?) but i...

    this works out perfectly hkmp5 (u play CS?) but i was just wonderin if u can make the spacings right without the use of ....
    #include <iomanip>
    using namespace std;
    THX
  7. Replies
    11
    Views
    1,306

    hmmmm there was a mistake in the second output...

    hmmmm there was a mistake in the second output that i types. the spacing should make it a table that looks like a "box-shaped" multiplication table. anyways ill try your suggestion hkmp5
  8. Replies
    11
    Views
    1,306

    Help with SPACING

    This is my multiplication table program;

    #include <iostream.h>
    int main()
    {
    for (int x = 0; x < 10; x++) {
    for (int y = 0; y < 10; y++) {
    cout << x*y << " ";
    }
    cout...
  9. Replies
    2
    Views
    2,592

    Thanks you have been very helpful :D . I starting...

    Thanks you have been very helpful :D . I starting to get the hang of this.
  10. Replies
    2
    Views
    2,592

    multiplication table help

    Hi its me again :) . I understand that in a loop function
    " for(int x=0;x<100;x++) " X increases by one as long as X is <100. But I wanna know what expression to use (ie. x++,x** if it x** even...
  11. Replies
    5
    Views
    968

    Hey thx for the help that really cleared things...

    Hey thx for the help that really cleared things up.
  12. Replies
    5
    Views
    968

    just a question

    I know this is just a simple problem. I am new cprogramming student and I would like to know what and how I can incorporate the "%" function.
Results 1 to 12 of 12