Search:

Type: Posts; User: recklezz

Search: Search took 0.01 seconds.

  1. @greaper when i run it through an IDE. @vart...

    @greaper when i run it through an IDE.

    @vart when i compile it doesn't show any error :/.
  2. when i run the program windows says "7-pass.exe has stopped working".

    i named the program 7-pass.cpp.
    Modify your password program from before to put all of the password checking logic into a
    separate function, apart from the rest of the program.

    ...
  3. Replies
    13
    Views
    2,134

    #include using namespace std; int...

    #include<iostream>
    using namespace std;
    int main()
    {
    int num1,next_numbers,total;
    cout<<"enter the number:\n";
    cin>> num1;
    cout<<"\nenter next number:\n";
    cin>>...
  4. Replies
    13
    Views
    2,134

    i added a if statement.how to better indent the...

    i added a if statement.how to better indent the code??
    i don't get it :(
  5. Replies
    13
    Views
    2,134

    #include using namespace std; int...

    #include<iostream>
    using namespace std;
    int main()
    {
    int num1,next_numbers,total;
    cout<<"enter the number:\n";
    cin>>num1;
    cout<<"\nenter next number:\n";
    cin>>next_numbers;...
  6. Replies
    13
    Views
    2,134

    is this good?..i replaced the x,y and z. :)

    is this good?..i replaced the x,y and z. :)
  7. Replies
    13
    Views
    2,134

    is this ok? #include using...

    is this ok?


    #include<iostream>
    using namespace std;
    int main()
    {
    int num1,next_numbers,total;
    cout<<"enter the number:\n";
    cin>>num1;
  8. Replies
    13
    Views
    2,134

    thanks :).let me try it :)

    thanks :).let me try it :)
  9. Replies
    13
    Views
    2,134

    is the program related to the question?

    Write a program that computes a running sum of inputs from the user terminating when the user gives an input value of 0.



    #include<iostream>
    using namespace std;
    int main()
    {
    int x,y,z;
    do
  10. may be i should have included exit in one of...

    may be i should have included exit in one of those options since infinite loop is not good :/..this would have been a better program if exit was one of thos options.
  11. thanks :D

    thanks :D
  12. this is a little complicated for me now :/..i'll...

    this is a little complicated for me now :/..i'll understand this better if i go further in c++ ;)
  13. i haven't studied array yet :(

    i haven't studied array yet :(
  14. 1.Thanks for the tip :). 2.I'm not sure in the...

    1.Thanks for the tip :).
    2.I'm not sure in the question it says "if the input is not one of the options,reprint the list." i couldn't get a single reprint of the menu so the infinite loop.
    3.If i...
  15. can this program be made simple?? if yes pls help out!

    Write a menu program that lets the user select from a list of options, and if the input is not one
    of the options,reprint the list.
    Is this program correct?..i can execute this program but can this...
Results 1 to 15 of 16