Search:

Type: Posts; User: hiddenprophecy

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,883

    oooooohhhh!!! got it thanks! how do i display the...

    oooooohhhh!!! got it thanks! how do i display the newly multiplied values using displayMatrix()?
  2. Replies
    3
    Views
    1,883

    new issue

    Here's the program.

    the goals are:
    1. user inputs values
    2. displayMatrix() displays array and its values
    3. user inputs multiplier value
    4. scalarMultiply() multiplies values by whatever user...
  3. This is what i input...and it told me that the...

    This is what i input...and it told me that the subscript is not of integral type


    double theAverage(double M[]){
    double sum,i,ave;

    for( i = 0.0, sum = 0.0; i < SIZE; i++)
    sum = sum +...
  4. thanks adak! that's really clear for me now!...

    thanks adak! that's really clear for me now! though I am having trouble finding the average without having to add each element then / it by SIZE. any suggestions? here's what i got so far.

    ...
  5. SCREW MY 2 POSTS AFTER THIS ONE!!! I TRIED IT AND...

    SCREW MY 2 POSTS AFTER THIS ONE!!! I TRIED IT AND IT WORKED!!! SWEEEEEETTT!!!! CAN YOU TELL ME HOW THAT WORKS??????? THANK YOU THANK YOU THANK YOU!!!!
    (can you tell I'm kinda excited?)
  6. the number of elements in the array are being...

    the number of elements in the array are being displayed just fine, however the value that the user inputs in each element of the array is what i want to display but it won't...
    for instance.

    //I...
  7. void displayArray(int /*what goes here*/[]){ ...

    void displayArray(int /*what goes here*/[]){

    int i;//what goes here


    printf("\nHere is your array:\n\n");
    printf("You have %i elements in this array.\n",SIZE);
    for (i=0;i<SIZE;i++){...
  8. am i doing that in main() or displayArray? When I...

    am i doing that in main() or displayArray? When I do it in displayArray it tells me I have an unidentified variable. Then when i declare the variable it still doesn't show the values that the user...
  9. displaying user input values of an array by calling functions... PLEASE HELP ME!!!

    Hi, i'm new to this forum and i have seen a lot of really useful information given here, so i thought i would give it a shot.

    I'm doing a program that is VERY basic and the spec of the program...
Results 1 to 9 of 9