#include<iostream.h>
#include<conio.h>
class game
{
 int a,b,c;
 public:
     void g()
     { 
     cout<<"Enter value of a<<endl;
         cin>>a>>b;
         if(a<b)
         {
         cout<<a,<<endl;
         c++;
         }
       }
   };
   void main()
   {
    game g1;
    g1.g();
    getch();
    }

Recommended Answers

All 2 Replies

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.