/* Program to find factors of a number */#include<iostream>#include<conio.h>int main(){ using namespace std; int no,flag = 1; cout<<"Enter the number\t"; cin>>no; for(int i = 1; i < no/i; i++) if(no%i==0) cout<<i<<"...

C++ Program to Check if number is prime or not
/* Program to Check if number is prime or not */#include<iostream>#include<conio.h> //conio is used for getchint main(){ using namespace std; int no,flag=0; cout<<"Enter the natural number\t"; cin>>no; for(int i = 2; i < no/i; i++) // prime number...
C++ Program to check if a number is even or odd
/* Program to check if a number is even or odd */#include<iostream>int main(){ using namespace std; int no; cout << "Enter the integer\t"; cin >> no; if (no%2 == 0) //if no is divisible by 2, then no is even cout...
TECHXCODE ? Just a Random beginning

I don't have good idea to start this post. But am sure I will update this first post later. So, visit other posts of the websit...
Subscribe to:
Posts (Atom)