Search:

Type: Posts; User: xlokix

Search: Search took 0.01 seconds.

  1. Replies
    47
    Views
    12,207

    Actually, for the test that was today, there were...

    Actually, for the test that was today, there were 3 programs I had to know, and one of them would be on the test. Thankfully, one of the three programs on it was the one I knew (the asterisks one...
  2. Replies
    47
    Views
    12,207

    Ok I have one little problem and that's all I'm...

    Ok I have one little problem and that's all I'm asking out of these forums (for now at least)!

    I have a project that I have to do, you have to display this with loops:

    *
    **
    ***
    ****
    *****
  3. Replies
    47
    Views
    12,207

    It's like you're speaking 3 different languages!

    It's like you're speaking 3 different languages!
  4. Replies
    47
    Views
    12,207

    Ahhhhhhhhh! My teacher would kill me for that....

    Ahhhhhhhhh! My teacher would kill me for that. Woops! Thanks man, that worked :p.
  5. Replies
    47
    Views
    12,207

    Blah!!! I was sure I got it this time. Anyway, I...

    Blah!!! I was sure I got it this time. Anyway, I need help again.
    I'm not sure if it's just crashing, or it's closing again. But I tried the getchar();getchar(); and that didn't stop it from...
  6. Replies
    47
    Views
    12,207

    Ahhhhh. Let me try this out. What do you mean...

    Ahhhhh. Let me try this out.

    What do you mean by "found", never done that before :x
  7. Replies
    47
    Views
    12,207

    No, there's no room to sleep on the desk with the...

    No, there's no room to sleep on the desk with the computer there and all.
  8. Replies
    47
    Views
    12,207

    Couldn't find the Binary Search Method in my...

    Couldn't find the Binary Search Method in my textbook...
    Anyway, I started it...


    #include <iostream.h>
    main()
    int guess, ans, ans2;
    int high = 100;
    int low = 1;
  9. Replies
    47
    Views
    12,207

    Before the way I'm using now, I wrote something...

    Before the way I'm using now, I wrote something similar to scribblers way and got weird numbers so I changed my method.

    Ok. Next up, Project 2!
    Oh boy this is going to be a long one. The user...
  10. Replies
    47
    Views
    12,207

    Actually, I'm in C++ 1, and there will be no C++...

    Actually, I'm in C++ 1, and there will be no C++ 2 next year. So I will not learn more. And it's only a half a year class, so I'm finished with the class in about a week.
  11. Replies
    47
    Views
    12,207

    Here, I'll update on what I have so far. ...

    Here, I'll update on what I have so far.

    #include <iostream.h>
    #include <stdio.h>


    main()
    {
    int change;
    int q=0,d=0,n=0,p=0;
  12. Replies
    47
    Views
    12,207

    Well I'm trying to keep it simple, My teacher...

    Well I'm trying to keep it simple, My teacher probably wouldn't believe I wrote the code if I included stdio.h, since we've never learned that before. Or getchar (whatever the hell that is ...
  13. Replies
    47
    Views
    12,207

    Ok, look at this #include ...

    Ok, look at this

    #include <iostream>
    //#include <conio.h> Not standard C++ :(

    // We could do: using namespace std;
    // But we'd be including more than we need/want!
    using std::cout;
    using...
  14. Replies
    47
    Views
    12,207

    hold on, checking it over.

    hold on, checking it over.
  15. Replies
    47
    Views
    12,207

    I'll try and stay away from him.. But it's...

    I'll try and stay away from him..

    But it's still not working..

    I used some of what you told me,


    #include <iostream.h>
    #include <conio.h>
  16. Replies
    47
    Views
    12,207

    Damn, you make it look so easy :) Just one...

    Damn, you make it look so easy :)
    Just one question, what's "change -= 25" I don't get what that's doing

    And why should i use 'int main()' instead of main(), I was never taught 'int main()'.

    I...
  17. Replies
    47
    Views
    12,207

    Yeah, I had a feeling that those if/else...

    Yeah, I had a feeling that those if/else statements would kill me. So i wrote it over a bit:


    #include <iostream.h>
    #include <conio.h>

    main()
    {
    int change;
    int ans;
  18. Replies
    47
    Views
    12,207

    Coin counting (logic problem)

    Problem here. I assume that I put too many nested if and else statements and screwed up somewhere :x. Anyway, the project is:
    Write a program to print the coins necessary to return change to a...
Results 1 to 18 of 18