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

ตรวจสอบว่าจำนวนมากหารด้วย 8 ได้หรือไม่ใน C++


ทีนี้มาดูวิธีการเช็คเลขว่าหารด้วย 8 ลงตัวหรือไม่ ในกรณีนี้จำนวนเป็นจำนวนที่มาก ดังนั้นเราจึงใส่ตัวเลขเป็นสตริง

ตัวเลขจะหารด้วย 8 ลงตัว ถ้าตัวเลขที่มีสามหลักสุดท้ายหารด้วย 8 ลงตัว

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
bool isDiv8(string num){
   int n = num.length();
   int last_three_digit_val = (num[n-3] - '0') * 100 + (num[n-2] - '0') * 10 + ((num[n-1] - '0'));
   if(last_three_digit_val % 8 == 0)
      return true;
      return false;
}
int main() {
   string num = "1754586672360";
   if(isDiv8(num)){
      cout << "Divisible";
   }else{
      cout << "Not Divisible";
   }
}

ผลลัพธ์

Divisible