Search:

Type: Posts; User: funnydarkvador

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Codeblocks stops to work when i run this code,...

    Codeblocks stops to work when i run this code, can someone tell me why?
  2. no error of compilation but my code makes codeblocks bug

    Hi everybody, something may be wrong in my code even if there are no errors of compilation. But i don't know why!
    Any help would be greatly appreciated.
    My code :
    #include <iostream>#include...
  3. Yes, but the problem is i think i have to pass...

    Yes, but the problem is i think i have to pass finalArray because i use it in my function toto, but contrarily to what you said i want to return each value of the array finalArray in the code coming...
  4. Yes, i just want to return each value of the...

    Yes, i just want to return each value of the array at n,n
  5. error : declaration of 'float finalArray[9][9]' shadows a parameter

    Hi everyboy ! While compiling, i get this error :

    I don't understand where does it come from. Here is my code :

    #include <iostream>#include <iomanip>
    #include <cstdlib>


    using namespace...
  6. What a stupid beginner error!! OK thank you i...

    What a stupid beginner error!! OK thank you i have to write : cin >> array_of_coefficients[x];
  7. error : no match for 'operator

    Hi everybody ! I get this error while compiling this code :

    #include <iostream>
    #include <iomanip>
    #include <cstdlib>


    using namespace std;
  8. OK. Finally, the code with 0 errors is : ...

    OK. Finally, the code with 0 errors is :

    #include <iostream>#include <iomanip>
    #include <cstdlib>


    using namespace std;
  9. OK i don't have to return my array in this...

    OK i don't have to return my array in this exemple, so is this code right ? (i deleted :


    #include <iostream>
    #include <iomanip>
    #include <cstdlib>


    using namespace std;
  10. Sorry i meant a

    Sorry i meant a
  11. The problem has now been resolved !! Thank you...

    The problem has now been resolved !! Thank you everybody for your help !
    I just had to add a in my outter loop of my function printOutArray as Neo1 told me, but i have to tell my error to all the...
  12. If someone would give me the simple code that...

    If someone would give me the simple code that displays an array of 6 lines and 6 columns filled with zero i would greatly appreciate it
  13. What is '\n' , is this what you call a newline...

    What is '\n' , is this what you call a newline (sorry english is not my native language)? And where do i have to put it in my code?
  14. I just tried what jimblumberg told me to do but...

    I just tried what jimblumberg told me to do but it doesn't work any more. Please could someone give me a piece of code that would help me understand because honestly, i still can't see how to make an...
  15. i try to understand what you Neo1 are explaining...

    i try to understand what you Neo1 are explaining me, so i do this :

    #include <iostream>
    #include <iomanip>
    #include <cstdlib>

    using namespace std;


    void initArray(float...
  16. Elysia, to answer your question, my code is not...

    Elysia, to answer your question, my code is not finished, i return it because i will use it later as i said
  17. i try to understand what you Neo1 are explaining...

    i try to understand what you Neo1 are explaining me, so i do this :

    #include <iostream>#include <iomanip>
    #include <cstdlib>


    using namespace std;


    void initArray(float largeArray[6][6]){
  18. i changed it, i put 6 everywhere i had 5 in order...

    i changed it, i put 6 everywhere i had 5 in order to have 6 lines and 6 columns, but the result is exactly the same.
    i also tried to put an endl by typing this :
    cout << largeArray [x]...
  19. Does anyone have a solution to change correctly...

    Does anyone have a solution to change correctly the line?
  20. Ok i understand, however i'm changing the line...

    Ok i understand, however i'm changing the line when i do this :

    for (int x=0; x < 5; x++){
    So could you tell me how to do correctly change the line because i can't see how to do
    ...
  21. Sorry, I forgot to say hello, so Hi everybody !!...

    Sorry, I forgot to say hello, so Hi everybody !! Any help would be greatly appreciated even if i know it may be some classic beginner error
  22. number of columns and lines in my array

    I don't understand why my code doesn't display an array of 6 lines and 6 columns as i wish.

    My code displays an array with 10 columns and 3 lines.
    Than you in advance for the help.


    Here is...
  23. Thank you for your advice laserlight. I think i...

    Thank you for your advice laserlight. I think i don't need to use std::cout because i did #include <cstdlib> at the beginning of my program, so that i use cout whether than std::cout
    Anyway i've...
  24. [QUOTE=laserlight;1151378]Consider this program:...

    [QUOTE=laserlight;1151378]Consider this program:



    for (int i = 0; i < 10; ++i)
    {
    std::cout << numbers[i] << ' ';
    }
    std::cout << std::endl;
    }
  25. Yes that's what i want to do, but i don't...

    Yes that's what i want to do, but i don't understand your idea to use a simple loop to assign the values, can you explain me a little bit please?
Results 1 to 25 of 54
Page 1 of 3 1 2 3