... haỡnh MS-DOS cu a Microsoft a õổồỹc lọửng vaỡo trong caùc phión baớn cu a Windows. Hóỷ õióửu haỡnh MAC/OS duỡng cho caùc maùy Macintosh cu a Apple. Ngoaỡi ra coỡn mọỹt sọỳ hóỷ õióửu haỡnh 9 khạc ... caùc maùy tờnh hióỷn a i. Hóỷ õióửu haỡnh laỡ mọỹt hóỷ thọỳng caùc chổồng trỗnh quaùn xuyóỳn toaỡn bọỹ caùc hoaỷt õọỹng cu a MTT, coù nhióỷm vuỷ quaớn lyù vaỡ tọỳi ổu vióỷc sổớ duỷng caùc taỡi...
Ngày tải lên: 17/09/2013, 14:10
Giáo trình tin học A
... mềm ta: A. Đ a đ a boot vào ổ đ a A và mở nguồn điện B. Đ a đ a boot vào ổ đ a C và mở nguồn điện C. Đ a đ a mềm bất kỳ vào ổ đ a A và mở nguồn điện D. Đ a đ a mềm bất kỳ vào ổ đ a B và mở nguồn ... trang và cuối trang cho văn bản trong Word ta thực hiện: A. Click Edit\ Header and Footer B. Click Format\ Header and Footer C. Click View\ Header and Footer D. Click File\Page Set...
Ngày tải lên: 10/11/2013, 12:11
... Prototype ham Nhap int TinhTong(int, int); // Protytype ham TinhTong // Phan dinh nghia ham main void main() { int a, b, tong; Nhap (a) ; Nhap(b); tong = TinhTong (a, b); printf(“Tong ... printf(“Tong cua a va b la %d.”, tong); } // Phan mo ta cac ham void Nhap(int &n) { printf(“Nhap mot so nguyen: ”); scanf(“%d”, &n); } int TinhTong(int a, int...
Ngày tải lên: 08/04/2014, 18:04
Tài liệu GIÁO TRÌNH TIN HỌC CẤP ĐỘ A - NGUYỄN QUỐC SƠN ppt
... GIÁO TRÌNH TIN HỌC CẤP ĐỘ A GIÁO TRÌNH TIN HỌC CẤP ĐỘ A NGUYỄN QUỐC SƠN TRUNG TÂM GXTX HN TIÊN PHƯỚC BIÊN SOẠN: NGUYỄN QUỐC SƠN TRANG 1 TRUNG TÂM GDTX - HN TIÊN PHƯỚC GIÁO TRÌNH TIN HỌC CẤP ĐỘ A 1. ... thông tin trong máy tính: Ký hiệu Tên gọi Độ lớn KB Ki-lô-bai 1024 Byte MB Mê-ga-bai 1024 KB GB Gi-ga-bai 1024 MB TB Tê-ra-bai 1024GB PB Pê-ta-bai 1024 TB 3. Các dạng thông tin...
Ngày tải lên: 10/12/2013, 14:15
Giáo trình tin học cơ sở A pot
... Prototype ham Nhap int TinhTong(int, int); // Protytype ham TinhTong // Phan dinh nghia ham main void main() { int a, b, tong; Nhap (a) ; Nhap(b); tong = TinhTong (a, b); printf(“Tong ... printf(“Tong cua a va b la %d.”, tong); } // Phan mo ta cac ham void Nhap(int &n) { printf(“Nhap mot so nguyen: ”); scanf(“%d”, &n); } int TinhTong(int a, int...
Ngày tải lên: 24/03/2014, 19:20
Giáo trình tin học Chương I
... value in variable to right of operator– Converts value to variable data type• = (assignment operator)– Assigns value to variable– Binary operator (two operands)–Example:sum = variable1 + variable2; 2003 ... Equality and Relational OperatorsStandard algebraic equality operator or relational operator C++ equality or relational operator Example of C++ condition Meaning of C++ condition Relation...
Ngày tải lên: 22/08/2012, 10:12
Giáo trình tin học chương II
... Repetition)• Many programs have three phases– Initialization• Initializes the program variables–Processing• Input data, adjusts program variables– Termination• Calculate and print the final results– ... outlineAnalyze exam results and decide if tuition should be raised • First refinementInitialize variablesInput the ten quiz grades and count passes and failuresPrint a summary of the exam re...
Ngày tải lên: 22/08/2012, 10:12
Giáo trình tin học chương III
... ){declarations and statements}– Parameter list• Comma separated list of arguments– Data type needed for each argument• If no arguments, use void or leave blank– Return-value-type• Data type of result ... Modularize a program– Software reusability• Call function multiple times • Local variables– Known only in the function in which they are defined– All variables declared in function definiti...
Ngày tải lên: 22/08/2012, 10:12
Giáo trình tin học chương IV
... declaring arrays, specify–Name– Type of array• Any data type– Number of elementstype arrayName[ arraySize ];int c[ 10 ]; // array of 10 integersfloat d[ 3284 ]; // array of 3284 floats• Declaring ... Searching Arrays: Linear Search and Binary Search4.8 Multiple-Subscripted Arrays 2003 Prentice Hall, Inc. All rights reserved.2Arrays• Array– Structures of related data items– Static entity (sam...
Ngày tải lên: 22/08/2012, 10:13
Giáo trình tin học Chương V
... Simulate pass-by-reference• Use pointers and indirection operator– Pass address of argument using & operator– Arrays not passed with & because array name already pointer– * operator used as ... Initialization• Pointer variables– Contain memory addresses as values – Normally, variable contains specific value (direct reference)– Pointers contain address of variable that has specific val...
Ngày tải lên: 22/08/2012, 10:13