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ủ
Tài Liệu Phổ Thông
Sáng kiến kinh nghiệm
Lecture Introduction to computer and programming - Lecture No 4
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Introduction to computer and programming - Lecture No 4
Thục Nhi
77
1
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
After studying this lecture you will be able to understand: Development process model, software development process activities, requirement for a web development process model, rational unified process model (RUP), suitability for web application development. | CSC103: Introduction to Computer and Programming Lecture No 4 Today’s lecture outline Complex flowcharts Function Algorithm A simple C program Make a flowchart to fill the bath tub with water Start End Turn on hot and cold water Too hot or cold Adjust hot and cold taps Wait for 2 minutes Is the bath full A A Turn off hot and cold taps Y N N Y Turn on the hot and cold taps. Is it too hot or cold? If it is, go to step 3, otherwise go to step 4. Adjust the hot and cold taps and go back to step 2. Wait for 2 minutes. Is the bath tub full? If it is, go to step 6, otherwise go to step 4. Turn off the hot and cold taps. Make a flowchart to find the input number is greater than 100 or less than or equal to 100 Start End Display message “Enter a number” Read the input in x Is x > 100 if it is go to step 4 otherwise go to step 5 Display a message “Greater than 10” Display a message “Less than or equal to 100” Input: x Display: Enter a number x > 100 False True Display: Greater than 100 Display: less than or equal to 100 Functions From a programming perspective, functions allow you to group a logical series of activities, or program statements, under one name. Every C program must have a main function For example, suppose I want to create a function called bakeCake Algorithms An algorithm is a finite step-by-step process for solving a problem. It can be as simple as a recipe to bake a cake, or as complicated as the process to implement an autopilot system for a 747 jumbo jet. Algorithms generally start off with a problem statement. It is this problem statement that programmers use to formulate the process for solving the problem. Algorithm for BakeCake Mix wet ingredients in mixing bowl Combine dry ingredients Spoon batter into greased baking pan Bake cake at 350 degrees for 30 minutes Anyone reading my code will see my function called bakeCake and know right away that I’m trying to bake cakes. Functions Functions are typically not static, meaning they are living entities, . | CSC103: Introduction to Computer and Programming Lecture No 4 Today’s lecture outline Complex flowcharts Function Algorithm A simple C program Make a flowchart to fill the bath tub with water Start End Turn on hot and cold water Too hot or cold Adjust hot and cold taps Wait for 2 minutes Is the bath full A A Turn off hot and cold taps Y N N Y Turn on the hot and cold taps. Is it too hot or cold? If it is, go to step 3, otherwise go to step 4. Adjust the hot and cold taps and go back to step 2. Wait for 2 minutes. Is the bath tub full? If it is, go to step 6, otherwise go to step 4. Turn off the hot and cold taps. Make a flowchart to find the input number is greater than 100 or less than or equal to 100 Start End Display message “Enter a number” Read the input in x Is x > 100 if it is go to step 4 otherwise go to step 5 Display a message “Greater than 10” Display a message “Less than or equal to 100” Input: x Display: Enter a number x > 100 False True Display: Greater than 100 Display:
TÀI LIỆU LIÊN QUAN
Lecture Introduction to computer and programming - Lecture No 6
Lecture Introduction to computer and programming - Lecture No 8
Lecture Introduction to computer and programming - Lecture No 9
Lecture Introduction to computer and programming - Lecture No 10
Lecture Introduction to computer and programming - Lecture No 11
Lecture Introduction to computer and programming - Lecture No 12
Lecture Introduction to computer and programming - Lecture No 13
Lecture Introduction to computer and programming - Lecture No 14
Lecture Introduction to computer and programming - Lecture No 15
Lecture Introduction to computer and programming - Lecture No 16
Đã 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.