1. 程式人生 > >c++語法格式

c++語法格式

style c++語法 ica eap body 控制 c++ ret esp

// ConsoleApplication3.cpp: 定義控制臺應用程序的入口點。
//

#include "stdafx.h"
#include <iostream>

//using namespace std; 命名空間,有點像java中的包類

int main()
{
    
    printf("hello world");
    std::cout << "hello world" <<std::endl;
    int n;
    //scanf("-----",&n);
    return 0;
    
}

c++語法格式