Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Miscellaneous ProblemsRSS Feeds

FLAMES

Posted By: Tamil Mani     Category: C++ Programming     Views: 9365

What type of relation between Boy & Girl, Using name.

#include<iostream.h>
#include<conio.h>
#include<string.h>
int main()
{
char n1[20],n2[20],a[20],b[20];
int i,j,k,tot=0;
cout<<"\n Enter the boy name  : ";
cin>>a;
cout<<"\n Enter the girl name : ";
cin>>b;
cout<<endl;
strcpy(n1,a);
strcpy(n2,b);
i=strlen(a);
j=strlen(b);
tot=i+j;
for(i=0;a[i]!=NULL;i++)
{
for(j=0;b[j]!=NULL;j++)
{
if(a[i]==b[j])
{
tot=tot-2;
b[j]='*';
break;
}
}
}
//cout<<"\n count = "<<tot<<endl;
if(tot == 2 ||tot== 4 || tot==7 ||tot==9 )
cout<<   n1 << " and " << n2 << " are Enemy";
else if( tot == 3 ||tot==5 || tot==14 ||tot==16 || tot==18 )
cout<<   n1 << " and " << n2 << " are Friends";
else if( tot == 8 || tot==12 || tot==17)
cout<<   n1 << " and " << n2 << " in Affection";
else if( tot == 10)
    cout<<   n1 << " and " << n2 << " Love";
    else if( tot == 6 || tot==11 || tot==15)
    cout<<   n1 << " and " << n2 << " will arriage";
    else
    cout<<   n1 << " and " << n2 << " are SweetHearts";
    getch();
return 0;
}
  
Share: 

 
 

Didn't find what you were looking for? Find more on FLAMES Or get search suggestion and latest updates.

Tamil Mani
Tamil Mani author of FLAMES is from Chennai, India. Tamil Mani says

I am college student.
i want to study more in computer,
i like hardware component,,,eg,,computer,cell,etc
i love lovers & friends very much.....

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!