Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

จะจับข้อผิดพลาดหารด้วยศูนย์ใน C ++ ได้อย่างไร


ต่อไปนี้คือตัวอย่างการหาข้อผิดพลาดในการหารด้วยศูนย์

ตัวอย่าง

#include <iostream>
using namespace std;
int display(int x, int y) {
   if( y == 0 ) {
      throw "Division by zero condition!";
   }
   return (x/y);
}
int main () {
   int a = 50;
   int b = 0;
   int c = 0;
   try {
      c = display(a, b);
      cout << c << endl;
   } catch (const char* msg) {
      cerr << msg << endl;
   }
   return 0;
}

ผลลัพธ์

Division by zero condition!

ในโปรแกรมข้างต้น ฟังก์ชั่น display() ถูกกำหนดด้วยอาร์กิวเมนต์ x และ y มันคืนค่า x หารด้วย y และเกิดข้อผิดพลาด

int display(int x, int y) {
   if( y == 0 ) {
      throw "Division by zero condition!";
   }
   return (x/y);
}

ในฟังก์ชัน main() โดยใช้ try catch block ข้อผิดพลาดจะถูกตรวจจับโดย catch block และพิมพ์ข้อความ

try {
   c = display(a, b);
   cout << c << endl;
} catch (const char* msg) {
   cerr << msg << endl;
}