This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Kamis, 24 Maret 2016

test bilangan prima

#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      ...