목록C++/따배C++ 18강 입력과 출력 (7)
일상 코딩
#include #include #include #include #include using namespace std; int main() { const string filename = "my_file.txt"; // make a file { ofstream ofs(filename); for (char i = 'a'; i
#include #include // file I/O library #include #include #include using namespace std; int main() { // writing if(true) { ofstream ofs("my_first_file.dat", ios::binary); // ios::app - append mode, ios::binary // ofs.open("my_first_file.dat") if (!ofs) { cerr
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include using namespace std; int main() { // regex re("\\d+"); // \d - digit인지? // regex re("[ab]"); // regex re("[[:digit:]]{3}"); // regex re("[A-Z]+"); // regex re("[A-Z]{1,5}"); // 최소 1개, 최대 5개 regex re("([0-9]{1..
#include #include #include #include using namespace std; void printCharacterClassification(const int &i) { cout
#include #include using namespace std; int main(int argc, char const *argv[]) { { stringstream os; os : extraction operator // os.str("Hello, World!"); os str; // 빈칸을 만나면 끊기게됨. str = os.str(); // 문자열 전체 출력됨 cout > str2; cout
#include #include using namespace std; int main() { {// 앞에 + 기호가 출력됨. // +108 cout.setf(std::ios::showpos); cout