Search:

Type: Posts; User: Sshakey6791

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. This is how I would of did it

    #include <iostream>
    #include <string>

    using namespace std;

    double addition ( double x, double y );
    double subtraction ( double x, double y );
    double multiplication ( double x, double y );...
  2. Ya it might be a little overkill for this program...

    Ya it might be a little overkill for this program but now I can learn how to fix it for this useless program so I can put better use to it later.

    Thanks for the help.

    Do you have any were I...
  3. I change the unsigned short int to a int and the...

    I change the unsigned short int to a int and the program works... Wired I don't know why but it did. Thanks for the help / feed back.
  4. Need a little bit of help with my program

    My code dose something really basic. All it dose is that it ask you how many grades you have to enter. Then you enter them grades and it give you the sum and the average. now i put a if statement to...
  5. Replies
    9
    Views
    1,572

    Thanks man. You couldn't of explained it any...

    Thanks man. You couldn't of explained it any better.
  6. Replies
    9
    Views
    1,572

    Help if basic question

    Ok I'm just going over the basic trying to sharping my skills. I was looking over this program and I was reading the "How It Works " section telling me I should add the break so the loop doesn't keep...
  7. ?

    Can you show me how to do that ? or send me a example? help would be appreciated.

    Thanks.
  8. Pythagorean Theorem Program Comment, criticize, or whatever

    #include <iostream>
    #include <cmath>
    #include <string>

    int main()
    {
    double SideA, SideB, SideC, Hyp; // Hyp is the Hypotenuse
    std::string GetInfo;

    std::cout << "The Pythagorean Theorem...
  9. Replies
    13
    Views
    6,798

    Why do you declare your variable globe and then...

    Why do you declare your variable globe and then local???




    float Fahrenheit, Celsius;

    int main()
    {
  10. Replies
    20
    Views
    2,617

    Which way is better ?

    I was just wondering is
    using namespace std;
    A good idea or just program without it?
  11. Replies
    1
    Views
    997

    Need some information on basic stuff

    What is the input buffer?
    What is the different between flash() and ignore() and get()?
    How do they relate?

    I really sorry for these basic question but I'm really into C++ and I just trying...
  12. Replies
    6
    Views
    1,061

    That what i was talking about on the top program...

    That what i was talking about on the top program just in a different way ... :) sorry about the confusion
  13. Replies
    6
    Views
    1,061

    here the program i'm working on

    #include <iostream>
    #include <string>

    using namespace std;

    int main()
    {

    float MoneyEnter;
    float pennie = .01;
  14. Replies
    6
    Views
    1,061

    Need some help with looping

    This is a basic version of the programming I'm working on.

    Now as most of you can see the output is going to be..... 12345.
    But I want it to just print out 5 not 12345.

    b/c the program I'm...
  15. New Password protector..... Check it out

    #include <iostream>
    #include <string>


    using namespace std;

    int main()
    {
    const string HEADER ( "\t\t\tThree chances to get password right\n\n" );
    const string line ( 80, '*' );
  16. Replies
    3
    Views
    1,463

    Need help with the if statement

    I made this calculator program here the beginning of it.


    #include <iostream>
    #include <string>

    using namespace std;

    int main() {
  17. Replies
    10
    Views
    1,424

    I use VC++ But When I use the .exe file it close...

    I use VC++ But When I use the .exe file it close out without displaying the output but.... Thanks for the tips I going to try the Code::Blocks.
  18. Replies
    10
    Views
    1,424

    I don't know. They didn't really say it was bad...

    I don't know. They didn't really say it was bad but there was a better way.....
  19. Replies
    10
    Views
    1,424

    Need A little Help

    I been using since I started programming in C++ is system("pause");. Some people are telling me that it is a bad idea to use this and gave me some stuff to read and I see why... Not I started using...
  20. I like it. Thanks for checkout my program..... ...

    I like it. Thanks for checkout my program..... Thanks for the help, Both of you
  21. Instead of using system.... How about this..... >...

    Instead of using system.... How about this..... >

    #include <iostream>
    #include <string>

    using namespace std;

    int main()
    {
    const string HEADER ( "\t\t\tBasic Calculator Program\n\n" );
  22. Basic Calculator I made check it out if you want...

    #include <iostream>
    #include <string>

    using namespace std;

    int main()
    {
    const string HEADER ( "\t\t\tBasic Calculator Program\n\n" );
    const string SUBHEAD ( "\t\t\tEnter in a math...
  23. Ooo I see thanks for the help man.....

    Ooo I see thanks for the help man.....
  24. Here the new one

    #include <iostream>
    #include <string>
    #include <windows.h>

    using namespace std;

    int main()
    {
    const string HEADER ( "\t\t\tThree chances to get password right\n\n" );
    const string line (...
  25. Program I made check it out if you want...... comment.... whatever

    #include <iostream>
    #include <string>
    #include <windows.h>

    using namespace std;

    int main()
    {
    string Header("Welcome Enter your password: \n");
    string line(28, '*');
Results 1 to 25 of 58
Page 1 of 3 1 2 3