Programming Examples

Cpp program to check numbers are unique


WAP to input three integer numbers and check whether all numbers are unique or not.

#include<iostream>
using namespace std;
int main()
{
    int a,b,c;
   cout<<"Enter three integers";
   cin>>a>>b>>c;
   if(a==b || b==c || a==c)
   {
     cout<<"Numbers are not unique.";
   }
   else
   {
     cout<<"Unique numbers.";
   }
   return 0;
}

Output

Enter three integers13

14

56

Unique numbers.

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad