Wednesday, 21 January 2015

Program to find the Longest Increasing Series

//Program to find the Longest Increasing Series.

#include<iostream.h>
#include<conio.h>
void main()
{
 int no,temp,i;
 int temp2=0;
 int max=0;
 int j=0;
 clrscr();
 cout<<"Enter 10 number to check longest:\n";
 for(i=1;i<=10;i++)
  {
   cin>>no;
   if(no>max)
    {
     max=no;
     j=j+1;
     temp=j;
    }
    else
     {
      j=1;
      if(temp2<temp)
      {
       temp2=temp;
      }
      max=no;
     }
   }
     if(temp2>j)
     cout<<"Longest series is: "<<temp2;
     else
     cout<<"Longest series is: "<<j;

   getch();
}

No comments:

Post a Comment

Read contacts in iOS using Swift with error handling

Just copy and paste the below code Pre-step before pasting the below code Add below line in AppDelegate.swift file below import statement ...