입출력
#include <bits/c++io.h>
#include <stdio.h>
#include <cstdio>
int n;
int main() {
    scanf("%d",&n);
    printf("hello C++! %d",n);
}
#include <iostream>
using namespace std;
int n;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(nullptr);
    cin >> n;
    cout << "hello C++! " << n;
}

endl  ,  \n  

endl은 출력 후 버퍼를 비우는 역할을 수행하기 때문에 많이 느리다.

 

using namespace std 에 대해서

 

배열 미리 최대범위까지 선언하는것과  배열 범위 입력받고 선언하는법

 

string 사용법 

 

 

'이것저것' 카테고리의 다른 글

[VSCODE] Terminal 실행  (0) 2020.05.02
vscode c++ 코드스타일 바꾸기  (0) 2019.05.22
[VSCODE] 글씨 폰트 설정  (0) 2019.05.18
[VSCODE] C++ 환경 구축  (0) 2019.05.17
[VSCODE] Power Mode  (0) 2019.05.13

+ Recent posts