Search:

Type: Posts; User: swansea

Search: Search took 0.01 seconds.

  1. how much money ?

    how much money ?
  2. What type of software/tools do i need to build a video website such as youtube?

    i want to create a webpage like youtube.com, were people can upload videos?

    please give me list a of what software,knowledge,anything i need to create and run a site similar to youtube


    i c++...
  3. Replies
    2
    Views
    820

    Wy am i getting this error message?

    #include<iostream>
    #include<string>

    using namespace std;

    int main()
    {
    double money;
    string food;
    int quantity;
  4. Replies
    4
    Views
    1,214

    ok but how do i write it? and display the price...

    ok but how do i write it?
    and display the price and make sure the user enters 5 digits and if not display invalid id and makes sure it knows 14 and 15 are the begginers
  5. Replies
    4
    Views
    1,214

    string manipulation

    #include<iostream>
    #include<string>

    using namespace std;

    int main()
    {
    string productID;
    char reply = 'y';
  6. Replies
    19
    Views
    3,825

    oh yeah duh thanks

    oh yeah duh


    thanks
  7. Replies
    19
    Views
    3,825

    #include #include using...

    #include<iostream>
    #include<fstream>

    using namespace std;

    int main()
    {
    short number = 0;
    short evenNumber = 0;
  8. Replies
    19
    Views
    3,825

    now im getting all zero's...

    now im getting all zero's...
  9. Replies
    19
    Views
    3,825

    #include #include using...

    #include<iostream>
    #include<fstream>

    using namespace std;

    int main()
    {
    short number = 0;
    short evenNumber = 0;
  10. Replies
    19
    Views
    3,825

    this is what i get in the outfile txt 13 9...

    this is what i get in the outfile txt

    13
    9
    12

    clearly not the even numbers
  11. Replies
    19
    Views
    3,825

    ok and how do i check for even numbers using what...

    ok and how do i check for even numbers using what code and how do i code to put it into the outfile...
  12. Replies
    19
    Views
    3,825

    i have to get this number list 40 13 25...

    i have to get this number list


    40
    13
    25
    58
    55
    12
    20
  13. Replies
    19
    Views
    3,825

    while (infile.eof()== false) { infile >>...

    while (infile.eof()== false)
    {
    infile >> number;
    infile >> evenNumber;
    if (num%2 == 0)


    outfile << evenNum << endl;
    }
  14. Replies
    19
    Views
    3,825

    anyone???

    anyone???
  15. Replies
    19
    Views
    3,825

    sequential access files?

    how do create an outfile that will contain only the even numbers from the infile txt

    heres the infile numbers

    40
    13
    25
    58
    55
    12
  16. Thread: array help

    by swansea
    Replies
    4
    Views
    1,008

    array help

    i need to write code for a program that

    1. allows user to enter a code
    2. will display the amount and quantity
    3. the user can enter as many code ids without having to execute the program again...
  17. Replies
    2
    Views
    1,405

    how would you make ask for the a , s , m , d...

    how would you make ask for the a , s , m , d first before it goes to ask for the num1 and num2 ?
  18. Replies
    2
    Views
    1,405

    Why is my program not working ?

    here my program:

    #include<iostream>

    using namespace std;

    int main()
    {
    //Declare Variables
    char operation = ' ';
  19. so how could i write a statement that : asks...

    so how could i write a statement that :

    asks for a letter ( i used D for division) when entered the program is going to ask the user for two numbers,but i need to divide the larger number by the...
  20. can you place a if/else statement in a switch case

    can you place a if/else statement in a switch case?

    ex:

    case 4:
    answer=f+b
    cout<<sum<<answer<<endl;
    break;

    if (f > 5)
Results 1 to 20 of 20