c++ 표준 입출력
#include <iostream>
// using namespace std;
int main() {
int a;
std::cin >> a;
std::cout << "Hello";
return 0;
}
cin, cout 보다 속도가 빨라 백준, 코테 등에서 쓰기 좋은 입출력 방법
데이터 형식을 지정해야 함(형식지정자)
#include <cstdio>
int main() {
int intNum;
double floatNum;
scanf("%d %f", &intNum, &floatNum);
printf("출력: %d, %f\n", intNum, floatNum);
return 0;
}