Search:

Type: Posts; User: Mornic_Programm

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,299

    okay thank you so much!

    okay thank you so much!
  2. Replies
    8
    Views
    1,299

    ... %windir% is a windows command that brings...

    ...

    %windir% is a windows command that brings you to the Windows folder...I really don't know if you can use it or not...

    like I said I'm a noob at programming, so...yeah...
  3. Replies
    3
    Views
    873

    To avoid problems like that, it is MUCH easier to...

    To avoid problems like that, it is MUCH easier to declare what it is before you get into the code.



    #include <iostream>
    using namespace std;
    int main
    {
    int num1,num2,sum
  4. Replies
    3
    Views
    933

    Yeah, what he said. #include ...

    Yeah, what he said.



    #include <iostream>

    using namespace std;

    int main()
    {
  5. Replies
    8
    Views
    1,299

    new problem...same issue...if that makes any...

    new problem...same issue...if that makes any sense. Some people have their windows folders located in a place OTHER than the C drive (my friend does, at least) So my most obvious guess would be to...
  6. Replies
    8
    Views
    1,299

    Thank You!!!

    Thank you so much! I knew it had to be something easy. I'm new to C++, sorry. Just got out of programming in BASIC. Major differences...thanks again!
  7. Replies
    8
    Views
    1,299

    File Input/Output

    I'm learning how to handle file input and output, and I have a quick question. Let's say I make a program with a 30 day trial on it. I'd make a file that says the date the program was made. I...
  8. Replies
    11
    Views
    1,288

    OK, I read the next tutorial and did the...

    OK, I read the next tutorial and did the switches. I got it to work IF MainMenu didn't go back to main. Well this is the code:


    #include <iostream>

    using namespace std;

    int MainMenu(int...
  9. Replies
    11
    Views
    1,288

    Oh lol well in that case I'll just leave the code...

    Oh lol well in that case I'll just leave the code how it is and go onto the next lesson (switches) thanx
  10. Replies
    11
    Views
    1,288

    So are you sayin, if I switch all those "if"...

    So are you sayin, if I switch all those "if" statements to Menu and get rid of the calling of Main, it should work? Is main like, supposed to be just the starting point, which branches off to menu,...
  11. Replies
    11
    Views
    1,288

    Fixed what you said to...program don't work any...

    Fixed what you said to...program don't work any more X_X

    Going back to my old code anybody got a clue?
  12. Replies
    11
    Views
    1,288

    Stupid Menus!!!

    I just can't get this menu to work!!!


    #include <iostream>

    using namespace std;

    int Menu(int pick);
    int NewGame();
    int Online();
  13. Replies
    5
    Views
    7,276

    I feel stupid lol Thanx Guys

    I feel stupid lol

    Thanx Guys
  14. Replies
    5
    Views
    7,276

    Tutorial Quizzes

    Ok, I feel even stupider then I did before :confused: I am stuck on the quiz for lesson 4 tutorial:

    1. Which is not a proper prototype?
    A. int funct(char x, char y);
    B. double funct(char x)...
  15. Replies
    2
    Views
    880

    Stupid Question

    Ok, I just started programming and I feel like a complete idiot :eek:

    So I started the first lesson and it went easy. Well now I'm sorta confused on something. Like let's say I made the program...
Results 1 to 15 of 16