Concrete.cpp_程序清单1.2_(《C Primer Plus》_P19)

// Concrete.cpp : 定义控制台应用程序的入口点。
//
/*
    时间:2018年05月29日 20:37:34
    目的:《C Primer Plus》_P19
    代码练习:程序清单1.2_Concrete.c程序
*/

#include "stdafx.h"

int _tmain(int argc, _TCHAR* argv[])
{
    // 混凝土含砾石和水泥
    printf("Concrete contains gravel and cement.\n");
    getchar();

    return 0;
}

/*
    在VS2010中运行结果:
-------------------------------------
Concrete contains gravel and cement.
--------------------------------------
*/

猜你喜欢

转载自blog.51cto.com/13555061/2121730