码迷,mamicode.com
首页 > 其他好文 > 详细

printAB()

时间:2016-12-23 21:51:49      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:tin   std   code   ntb   turn   class   pre   end   oid   

#include <iostream>

void printA()
{
    std::cout << "A" << std::endl;
}

void printB()
{
    std::cout << "B" << std::endl;
}

void printAB()
{
    printA();
    printB();
}

int main()
{
    std::cout << "Starting main()..." << std::endl;
    printAB();
    std::cout << "Ending main()..." << std::endl;
    return 0;
}

 

printAB()

标签:tin   std   code   ntb   turn   class   pre   end   oid   

原文地址:http://www.cnblogs.com/funnyweb/p/6215812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!