티스토리 뷰
C++에서 표준객체의 namespace를 쓰는 방법 3가지
1)
#include <iostream>
int main()
{
std::cout<<"안녕";
return 0;
}
2)
#include <iostream>
using std::cout;
int main()
{
cout<<"안녕";
return 0;
}
3)
#include <iostream>
using namespace std;
int main()
{
cout<<"안녕";
return 0;
}
입출력 스트림 객체 cout, cin
cin >> a; //입력받는 객체(=scanf())
cout << "a=" << a << endl; //출력하는 객체(=printf())
'C++' 카테고리의 다른 글
[C++] 7. 함수 오버로딩과 디폴트 매개변수 (0) | 2021.11.09 |
---|---|
[C++] 5. const (0) | 2021.11.02 |
[C++] 4. 생성자와 소멸자 (0) | 2021.10.19 |
[C++] 2. 클래스와 객체 만들기 (0) | 2021.10.12 |
[C++] 1. 객체 지향 언어 (0) | 2021.10.04 |
댓글