using namespace std
は使いたくないけどstd::cout
とかって書くのが嫌だなってとき、ありませんか?
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main(){
int n;
cin >> n;
cout << n << endl;
}
これでよし
Go to list of users who liked
More than 3 years have passed since last update.
using namespace std
は使いたくないけどstd::cout
とかって書くのが嫌だなってとき、ありませんか?
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main(){
int n;
cin >> n;
cout << n << endl;
}
これでよし
Register as a new user and use Qiita more conveniently
Go to list of users who liked