C++简单程序模板

#include ——包括

——库

int—— 整数

cin——输入

cout——输出


完整编程结构

#include


using namespace std ;


int main()
{
    int a, b, c ;           //定义三个整型变量
    cout<<"Please input three number:" ;    //提示输入三个数
    cin >> a>> b >> c ;     //输入a, b, c
    cout <<"You input: " << a <<"," << b << "," << c;             //输出c, 逗号隔开


    return 0 ;
}

你可能感兴趣的:(C++简单程序模板)