Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Hệ điều hành
Lecture Programming in C++ - Chapter 4: Basic input and output
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Programming in C++ - Chapter 4: Basic input and output
Mạnh Quỳnh
136
16
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Programming in C++ - Chapter 4: Basic input and output. On completion of this chapter students will learned how to: Read input from keyboard, write output to file, read data from file, read and work with character data, work with the input buffer. | Chapter 4 – Basic Input and Output Reading Data Keyboard input cin object >> called extraction operator Syntax: cin >> variable; Example: Lesson 4.1 cin >> income >> expense; Reads to values typed at keyboard (separated by whitespace) to memory locations names, income, and expense Prompt Message sent from program to screen Informs user what data to enter Precedes cin statement in program Lesson 4.1 int age; cout > age; Input and Output Streams Series of bytes in sequence Flow from device to device Objects are regions of storage in memory Object used determines device stream comes from or goes to cin and cout are identifiers for objects defined by iostream (screen and keyboard) Lesson 4.1 Writing Output to a File Similar to writing to screen Use object connected to output file Need the fstream header #include Open file for writing Declare object of ofstream class Lesson 4.2 Opening Files General form ofstream object_name . | Chapter 4 – Basic Input and Output Reading Data Keyboard input cin object >> called extraction operator Syntax: cin >> variable; Example: Lesson 4.1 cin >> income >> expense; Reads to values typed at keyboard (separated by whitespace) to memory locations names, income, and expense Prompt Message sent from program to screen Informs user what data to enter Precedes cin statement in program Lesson 4.1 int age; cout > age; Input and Output Streams Series of bytes in sequence Flow from device to device Objects are regions of storage in memory Object used determines device stream comes from or goes to cin and cout are identifiers for objects defined by iostream (screen and keyboard) Lesson 4.1 Writing Output to a File Similar to writing to screen Use object connected to output file Need the fstream header #include Open file for writing Declare object of ofstream class Lesson 4.2 Opening Files General form ofstream object_name (“file_name”); Choose object_name like variable name object_name is object of class ofstream Filename is where output will be stored Can use full pathname “C:\\salary.out” Lesson 4.2 Double quotes surround file_name Two backslashes needed – escape sequence for one Writing to Files General form object_name Declare object of ifstream ifstream object_name(“file_name”); Use ifstream object to read file like cin Lesson 4.3 Reading From a File Use ifstream object to read file like cin used for keyboard ifstream infile(“C:\\money.dat”); infile >> salary1 >>
TÀI LIỆU LIÊN QUAN
Lecture CIS 190: C++ programming - Chapter 6: Introduction to C++
Lecture CIS 190: C++ programming - Chapter 8: Classes in C++
Lecture Programming principles and practice using C++: Chapter 27 - Bjarne Stroustrup
Lecture CIS 190: C++ programming - Chapter 7: C++ streams
Lecture CIS 190: C++ programming - Chapter 12: Bits and pieces of C++
Lecture Practical C++ programming - Chapter 29: Programming adages
Lecture CIS 190: C++ programming - Chapter 3: Memory management in C
Lecture CIS 190: C++ programming - Chapter 1: Introduction and getting started
Lecture CIS 190: C++ programming - Chapter 5: Linked lists
Lecture CIS 190: C++ programming - Chapter 9: Vectors, enumeration, overloading, and more
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.