> ans; } while ((ans != 1) && (ans != 2)); exit(ans); //return value to operating system return 0; }"> > ans; } while ((ans != 1) && (ans != 2)); exit(ans); //return value to operating system return 0; }">

งานนำเสนอกำลังจะดาวน์โหลด โปรดรอ

งานนำเสนอกำลังจะดาวน์โหลด โปรดรอ

1 exit() and break C++ provides a way to leave a program early (before its natural finish) with the exit() function. The format of exit() is as follows:

งานนำเสนอที่คล้ายกัน


งานนำเสนอเรื่อง: "1 exit() and break C++ provides a way to leave a program early (before its natural finish) with the exit() function. The format of exit() is as follows:"— ใบสำเนางานนำเสนอ:

1 1 exit() and break C++ provides a way to leave a program early (before its natural finish) with the exit() function. The format of exit() is as follows: exit(status);

2 2 //Filename : testingexit.cpp #include int main() { int ctr = 0; if (ctr < 5) { ctr++; cout << "\nThis is print # " << ctr; ctr++; exit(0); cout << "\nThis is print # " << ctr; } return 0; }

3 3 //Filename : test_exit2.cpp #include main() { int ans; do { cout << "Do you want to : \n\n"; cout << "\t1. Run Microsoft Access \n\n"; cout << "\t2. Run Microsoft Exel\n\n"; cout << "What is your selection ? "; cin >> ans; } while ((ans != 1) && (ans != 2)); exit(ans); //return value to operating system return 0; }

4 4 Instead of exiting an entire program, we can use the break statement to exit the current loop. The format of break is: break; The break statement goes anywhere in a C++ program that another statement can go, but break typically appears in the body of a while or do-while loop so that you can leave the loop early. The following program example demonstrates how to use break statement.

5 5 //Filename : test_break.cpp //testing break statement #include main() { char name[15]; int a = 1; do { cout << "\nPlease enter your name? "; cin >> name; break; a++; } while (a<5); cout << "\n Thank you"; return 0; }

6 6 //Filename : testbreak.cpp #include Int main() { int num; char ans; cout << "Here are the number from 1 to 20 \n"; for (num = 1;num <=20;num++) { cout << num << "\n"; cout << "Do you want to see more (Y/N)?"; cin >> ans; if ((ans == 'N') || (ans == 'n')) { break; } cout << "\nThanks"; return 0; }

7 7 The continue Statement The continue statement does the opposite of the break; instead of exiting a loop early, continue forces the computer to perform another iteration of the loop. If you put a continue statement in the body of a for or while loop, the computer ignores any statement in the loop that follows continue. The format of continue is continue;

8 8 //Filename : testcontinue.cpp #include main() { char letter; int ctr; for (ctr = 1;ctr <= 5; ctr++) { cout << "Please enter a lowercase letter"; cin >> letter; if ((letter 'z')) { continue; } letter -= 32; cout << "\nThe uppercase is : " << letter << "\n"; } return 0; }

9 9 //Filename:Print_ascii.cpp //This program print ascii table for uppercase #include main() { int code = 65; char upcase = 'A'; do { cout << "\t" << code << "\t" << upcase; cout << "\n"; code++; upcase++; } while (code < 91); return 0; }

10 10 1. จงเขียนโปรแกรมรับค่า ตัวอักษรจากคีย์บอร์ด แล้ว แสดงผลลัพธ์ดังต่อไปนี้ ข้อมูลที่พิมพ์ Rungsan การแสดงผลลัพธ์ Total : 7 character Reverse : nasgnuR

11 11 2. จงเขียนโปรแกรมรับค่า ตัวอักษรจากคีย์บอร์ด แล้ว ทำการเข้ารหัสข้อมูลดังกล่าว โดยมีวิธีการคือ เพิ่ม ค่า 3 ตำแหน่ง เช่น ข้อมูลเริ่มต้น abc เปลี่ยนเป็น def ข้อมูลเริ่มต้น ant เปลี่ยนเป็น dqw 3. จงเขียนโปรแกรมรับค่า ตัวอักษรจากคีย์บอร์ด แล้ว ทำการถอดรหัสข้อมูลดังกล่าว โดยมีวิธีการคือ ลด ค่า 3 ตำแหน่ง เช่น ข้อมูลเริ่มต้น def เปลี่ยนเป็น abc ข้อมูลเริ่มต้น dqw เปลี่ยนเป็น ant


ดาวน์โหลด ppt 1 exit() and break C++ provides a way to leave a program early (before its natural finish) with the exit() function. The format of exit() is as follows:

งานนำเสนอที่คล้ายกัน


Ads by Google