#include <cstdlib>
#include <iostream>
#include <math.h>
using namespace std;
class Prima{
public:
bool prima(int x);
private:
int k, y;
bool test;
};
bool Prima::prima(int x){
if(x<2){
return false;
}
else
if (x==2){
return true;
}
else
y=ceil(sqrt(x));//pembulatan keatas
...
This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.