Project Arduino,C#,MATLAB,Python,C/C++
วันพุธที่ 9 พฤศจิกายน พ.ศ. 2559
c++ รับ input 1 ตัว ถามว่า input ที่รับเข้ามาเป็นจำนวนเฉพาะหรือไม่
int a, count = 0;
cout << "Enter Input : ";
cin >> a;
for (int i = 1; i <= a; i++)
{
if (a%i == 0)
{
count++;
}
}
if (count == 2)
{
cout << "Prime Number" << endl;
}
else
{
cout << "Not a Prime Number" << endl;
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น
บทความใหม่กว่า
บทความที่เก่ากว่า
หน้าแรก
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
ไม่มีความคิดเห็น:
แสดงความคิดเห็น