Week 16th "Item 3-calling function with function pointer" __ function

Source: Internet
Author: User

Problem Description:

Complete the following program (including defining the function) so that it can complete the function of the diagram. Please use the style of the existing program.

void Eat ();
void sleep ();
void Hitdoudou ();
void run (void (*f) ());
int main ()
{
int ichoice;
do {
cout<< "please choose (1-eat; 2-sleep; 3-dozen; other-retreat)";
cin>>ichoice;
if (ichoice==1)
run (eat);
else if (...)
...
}
while (true);
return 0;
}

For example

Code:

#include <iostream>
#include <cstdio>
using namespace std;
void Eat ();
void sleep ();
void Hitdoudou ();
void run (void (*f) ());
int main ()
{
    int ichoice;
    do {
        cout<< "please choose (1-eat; 2-sleep; 3-play; other-retreat)" << ';
        cin>>ichoice;
        if (ichoice==1)
            run (eat);
        else if (ichoice==2)
            run (sleep);
        else if (ichoice==3)
            run (Hitdoudou);
        else break
            ;
    }
    while (true);
    return 0;
}


void Eat ()
{
    cout<< "I eat ..." <<endl;
}

void Sleep ()
{
    cout<< "I Slept and slept ..." <<endl;
}

void Hitdoudou ()
{
    cout<< "What else can I do if I don't fight ..." <<endl;
}

void run (void (*f) ())
{
    f ();
}

Run Result:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.