Search:

Type: Posts; User: Mrzach3590

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    5,935

    I could give you 25 of the top of my head.. and...

    I could give you 25 of the top of my head.. and if u want another 15 in spanish and french and german
  2. Replies
    22
    Views
    2,021

    Salem, I love you. I understand it now, woot! I...

    Salem, I love you. I understand it now, woot! I modified the code to
    #include <iostream>
    using namespace std;
    int main()
    {
    int x, y;
    int low, high;
    std::cin >> x >> y;
    if ( x < y ) {
    low...
  3. Replies
    22
    Views
    2,021

    #include using namespace std; int...

    #include <iostream>
    using namespace std;
    int main()
    {
    std::cout<<"Input 2 numbers: ";
    int x, y;

    std::cin >> x >> y;
    if ( x < y) {
    x++;
  4. Replies
    22
    Views
    2,021

    Cant find anything, might be because im not...

    Cant find anything, might be because im not totally sure what im looking for... hmm
  5. Replies
    22
    Views
    2,021

    Lol, ok I've removed it. Hmm time for a visit to...

    Lol, ok I've removed it. Hmm time for a visit to FAQ and tutorial haha... again...
  6. Replies
    22
    Views
    2,021

    #include using namespace std; int...

    #include <iostream>
    using namespace std;
    int main()
    {
    std::cout<<"Input 2 numbers: ";
    int x, y;
    int upper, lower;
    std::cin >> x >> y;
    if ( x < y)
    x++;
  7. Replies
    22
    Views
    2,021

    Alright ill give it a try

    Alright ill give it a try
  8. Replies
    22
    Views
    2,021

    Compiles and runs, I want it to produce the the...

    Compiles and runs, I want it to produce the the numbers inbetween the numbers i enter... I enter 10 1 it gives me 10 I enter 1 10 it gives me 2 9... I want the anwaser to be 2 9 or 9 2 not 10 1.......
  9. Replies
    22
    Views
    2,021

    I didnt say it was to advanced, just that i wasnt...

    I didnt say it was to advanced, just that i wasnt thinking about it lol. Altho I might as well go find out more about it.
  10. Replies
    22
    Views
    2,021

    Ok, theres the original messed up code, and heres...

    Ok, theres the original messed up code, and heres the code that finally worked...
    #include <iostream>
    using namespace std;
    int main(void)
    {
    int sum = 0, value;
    while (std::cin >> value)...
  11. Replies
    22
    Views
    2,021

    Hmm that FAQ is somewhat advanced for me, sadly...

    Hmm that FAQ is somewhat advanced for me, sadly lol... However its a step in the right direction, thank you.
  12. Replies
    22
    Views
    2,021

    When i type in the numbers it jujst gives me teh...

    When i type in the numbers it jujst gives me teh smallest number i entered as the sum =P
    As you can see im extremely new to programming, and debugging is or was rather far from my mind... ignore()...
  13. Replies
    22
    Views
    2,021

    Using latest Dev compiler, the window wont stay...

    Using latest Dev compiler, the window wont stay open and it wont add the numbers correctly.
  14. Replies
    22
    Views
    2,021

    Calculator problem.

    Can't get this code here to work tried everything I can think of and looked at the FAQ. Should add up multiple variables.
    #include <iostream>
    int main(void)
    {
    int sum = 0, value;
    while...
  15. Replies
    22
    Views
    2,437

    I did this if (uname, pword == true); worked...

    I did this
    if (uname, pword == true);
    worked fine =P
    The semi colo after the parenthesis are uneeded as well

    But, alas, im 16 and just started on this language as well...lol
  16. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    Original question: #include int...

    Original question:

    #include <iostream>
    int main()
    {
    int x, y;
    std::cout << "Enter 2 numbers: " << std::endl;

    std::cin >> x >> y;
  17. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    Oops im sorry didnt realize.

    Oops im sorry didnt realize.
  18. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    book im using makes it look somuch...

    book im using makes it look somuch morecomplicated then that rofl... dang, thanks forhelp!
  19. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    This is what I ended up with after an hour of...

    This is what I ended up with after an hour of trying to get it to tell me how many negatives i've put it, lol... its kinda funny. Help!
    #include <iostream>
    int main()
    {
    std::cout <<"Enter...
  20. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    New question up top, im a hardcore noob to...

    New question up top, im a hardcore noob to programming rofl.
  21. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    Thanks twomers! I successfully wrote a while loop!

    Thanks twomers! I successfully wrote a while loop!
  22. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    Could you help me write one lol, the book i got...

    Could you help me write one lol, the book i got has it for a practice question but really didnt go over it, or atleast i dont think it did.
  23. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    ok, anyone know how to write a program in for and...

    ok, anyone know how to write a program in for and while to print the numbers from 10 down to 0?
  24. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    Hah ok it works thanks a ton I danced in my chair...

    Hah ok it works thanks a ton I danced in my chair rofl. Now i can move past page 6!
  25. Thread: Help!

    by Mrzach3590
    Replies
    25
    Views
    2,154

    It runs and it lets me enter the 2 #'s but when i...

    It runs and it lets me enter the 2 #'s but when i hit enter compiler exits out and wont add
Results 1 to 25 of 29
Page 1 of 2 1 2