Search:

Type: Posts; User: kellymart87

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,377

    Help create a student registration

    I need help creating a C++ program that allows college students to sign up for classes. There are approximately 1000 students and over 100 classes. Each student must have a user name and password...
  2. Replies
    5
    Views
    1,640

    Add 4 accounts to this program

    Here is the first account. I want to add 4 more accounts.



    // preprocessor directives
    #include <cstddef>
    #include <iostream>
    #include <fstream>
    #include <string>
    #include<stdlib.h>
  3. Replies
    1
    Views
    1,048

    sorry wrong code

    This code is supposed to output one row per line but it is not. Does anyone know how to fix it?



    #include <iostream>
    #include <iomanip>

    using namespace std;
  4. Replies
    1
    Views
    1,094

    One row per line?

    Do you know what the output of this code would be? It should be outputting one row per line.




    #include <iostream>
    #include <iomanip>

    using namespace std;
  5. Thread: Matrix

    by kellymart87
    Replies
    2
    Views
    1,272

    Matrix

    Does anyone know how to get this program to output 4 rows and 3 columns of numbers?



    #include <iostream>
    #include <iomanip>

    using namespace std;
  6. Replies
    2
    Views
    1,207

    number of components

    consider the following statement: double alpha[10][5]; The number of components of alpha is?
  7. Replies
    2
    Views
    3,739

    restart program

    is there something to use besides a do while loop to restart the program. Maybe a function call?
  8. Replies
    15
    Views
    5,089

    restart program

    is there something to use besides a do while loop to restart the program. Maybe a function call?
  9. Replies
    3
    Views
    2,265

    valid call to the function

    given the function void mystery(int list[], int size0; and the declaration in t alpha[50];, which of the following is a valid call to the function mystery?


    a. mystery(alpha[50]); ...
  10. Replies
    15
    Views
    5,089

    restart the program

    Is there a function that will restart the program at the main function?
Results 1 to 10 of 11