Skip to main content

Java program of common difference

import java.io.*;

class commondifference
{
public static void main(String args[]) throws Exception

{
int f=1,d=0,d2=0,n,r,r2;


BufferedReader br= new BufferedReader(new InputStreamReader(System.in));


System.out.println("ENTER a number");
n=Integer.parseInt(br.readLine());

do
{

r=n%10;

r2=(n/10)%10;

d=r-r2;

if(d2==0||d2==d)
d2=d;

else if (d2!=d)
 {
f=2;
break;

  }
n=n/10;

}while(n>9);



if(f==2)

System.out.println("No Common Difference");
else
System.out.println("Common difference is" + d2);
}
}

Comments

Popular posts from this blog

PROGRAM TO PRINT COLOURS OF RAINBOW ACCORDING TO THE NO. INPUTTED BY THE USER

#include,stdio.h> #include<conio.h> void main() { int ch; printf("INPUT A NUMBER\n"); scanf("%d",&ch); switch(ch) { case 6: printf("Red"); break; case 5 : printf(" Orange"); break; case 4 : printf(" Yellow"); break; case 3 : printf(" Green"); break; case 2 : printf(" Blue"); break; case 1 : printf(" Indigo"); break; case 0 : printf(" Violet"); break; default : ("wrong input "); } } SIMPLE PROGRAMS FIND TYPE OF THE TRIANGLE TEMPERATURE CONVERSION COMMISSION OF A SALESMAN PRINT NUMBERS IN DESCENDING ORDER BIGGEST NUMBER AMONG THREE NUMBERS CALCULATE DIVISION A YEAR IS LEAP OR NOT A NUMBER IS ODD OR EVEN PRINT THE SQUARE ROOT ELSE PRINT N TO THE POWER 5 PRINT A NEW NUMBER BY ADDING 1 TO EACH DIGIT OF THE NUMBER PRINT THE NO. OF CURRENCY NOTES ACCORDING TO THE AMOUNT ENTERED DATA STRUCTURES ENTER DETAILS OF A STUDENT ENTER DETAILS OF A ST...

PROGRAM TO FIND OCTAL OF A NUMBER

LIST OF PROGRAMS #include<stdio.h> #include<conio.h> void main() { long int n,oct=0,r=1,pow=1;  clrscr(); printf("Enter a number "); scanf("%ld",&n); if(n<0) printf("WRONG INPUT"); else {  if(n<=7&&n>=0)  oct =n;  else  {  while(n>0)  { r=n%8; oct=oct+(r*pow); n=n/8; pow=pow*10;  }  }  printf("OCTAL = %ld",oct);  getch(); } } LIST OF PROGRAMS

String operations in c sharp # using Microsoft visual studio 2010

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 {     class Program     {         static void Main(string[] args)         {             string s,find;             int l,i=0;             s = Console.ReadLine();             string.Concat(s);             l=s.Length;             Console.WriteLine(s);             Console.WriteLine("length\t"+l );                         Console.WriteLine("first and last character  " + s[0]+"  "+s[l-1] );             for (i = 0; i < l; i++)             {      ...