Programmator
Programmator
  • Home
  • Download
  • Social
    • YouTube
    • Instagram
    • Facebook
    • Telegram
  • Features
    • C/C++
    • Java
  • Contact Us

Write a java program to swap two numbers

In this program, you will learn the technique of swapping two numbers using temporary variable in java programming language.  

Exchanging the values stored in two variables is known as swapping. There are multiple ways to swap the values of two variables. It can be swapped using a temporary variable or simple or simple mathematical operations such as addition and subtraction or multiplication and division or bitwise XOR can also be used to perform the swap operation.

In the below program, two numbers 2.60f and 4.44f which are to be swapped are stored in variables: first and second respectively.

The variable is printed before swapping using println() to see the results clearly after swapping is done. Below given steps are followed swapping process. After completing swapping process and the variables are printed on the screen.

Remember, the only use of temporary is hold the value of first before swapping. You can also swap the numbers without using temporary.

  • Program:

public class SwapNumbers {

    public static void main(String[] args) {

        float first = 2.60f, sec = 4.44f;

        System.out.println("--Before swapping the numbers--");
        System.out.println("First number = " + first);
        System.out.println("Second number = " + sec);

        // Value of first is assigned to temporary
        float temporary = first;

        // Value of sec is assigned to first
        first = sec;

        // Value of temporary (which contains the initial value of first) is assigned to sec 
        sec = temporary;

        System.out.println("--After swapping the numbers--");
        System.out.println("First number = " + first);
        System.out.println("Second number = " + sec);
    }
}

  • Output:

--Before swapping the numbers--
First number = 2.6
Second number = 4.44
--After swapping the numbers--
First number = 4.44
Second number = 2.6

  • Step:

Below are the simple steps we follow:
  1. Assign first to a temporary variable: temporary = first
  2. Assign second to first: first = second
  3. Assign temp to second: second = temporary

Let us understand with simple example,

first = 111, second = 222
After line 1: temporary = first
temporary = 111
After line 2: first = second
first = 222
After line 3: second = temporary
second = 222

  • Visit:

Java program to print an Integer Here
Java program to add two integers Here
Java program to find ASCII value of a character Here
Java program to compute quotient and remainder Here

Write a java program to compute quotient and remainder

In this program, the quotient and remainder find in java programming language.

The different parts of division are dividend, divisor, quotient and remainder. Quotient can be defined as the resultant of the division. Formula for quotient is Quotient = Dividend/Divisor. In division, a number is divided by another number to get the output in the form of another number. The dividend is the number that is getting divided, and the divisor is the number that divides the given number. In fraction, the numerator is dividend, denominator is divisor, and when numerator is divided by the denominator, the result will be quotient. For, instance, suppose we have to divide 20(dividend) by 4(divisor); we will get 5, which is the quotient.

Remainder is defined as a value that is left after division. As an instance, if we divide 25 with 4, we will get 1 as a remainder. If the number divides another number completely, the remainder will be 0.
Remainder is always smaller than the divisor, if it is large, that means the division is not completed. But remainder can be less or greater than the quotient; for instance, if we divide 41 by 7, we will get 5 as a quotient, and 6 as a remainder which is less than divisor greater than the quotient. we know the method of Division = Divisor x Quotient + Remainder. so, the formula for remainder will be Remainder = Dividend - (Divisor x Quotient)

Here, we have created two variables dividend and divisor. we are calculating the quotient and remainder by dividing 55 by 6.
To find the quotient, we have used the / operator, we have divided dividend (55) by divisor (4). Since both dividend and divisor are integers, the result will also be integer.
55 / 6 // result 8(integer)
Likewise, to find the remainder we use the % operator. Here, the dividend is divided by the divisor and the remainder is returned by the % oprtator.
55 % 6 // result 1
finally, quotient and remainder are printed on the screen using println() function.

  • Program:

public class QuotientRemainder {

  public static void main(String[] args) {

    int dividend = 55, divisor = 6;

    int quotient = dividend / divisor;
    int remainder = dividend % divisor;

    System.out.println("Quotient = " + quotient);
    System.out.println("Remainder = " + remainder);
  }
}

  • Output:

Quotient = 9
Remainder = 1

  • Visit:

Java program to print an Integer Here
Java program to add two integers Here
Java program to find ASCII value of a character Here

Write a java program to find ASCII value of a character

In this program, find and display the ASCII value of a character in java using typecasting and normal variable assignment operations.

Here, character n is stored in a char variable ch. Like, single quotes (' ') are used to declare characters, we use double quotes (" ") are used to declare strings.

Now, to find the ASCII value of ch, we just assign ch to an int variable ASCII. Internally, Java converts the characters value to an ASCII value.

We can also cast the character ch to an integer using int. In simple terms, casting is converting variable from one type to another, here char variable ch is converted to an int variable castAscii

Last, we print the ascii value using the println() function.

  • Program:


public class AsciiValue {

    public static void main(String[] args) {

        char ch = 'n';
        int ASCII = ch;
        // You can also cast char to int
        int castAscii = (int) ch;

        System.out.println("The ASCII value of " + ch + " is: " + ASCII);
        System.out.println("The ASCII value of " + ch + " is: " + castAscii);
    }
}

  • Output:


The ASCII value of a is: 110
The ASCII value of a is: 110

  • Visit:

Java program to print an Integer Here
Java program to add two integers Here

Java program to add two Integers

In this program, two integers 11 and 12 are stored in integer variables first and second respectively.

Then, first and second are added using the + operator, and its result is stored in another variable sum.

Finally, sum is printed on the screen using println() function.

New YouTube video:


  •  Program:

class Main {

  public static void main(String[] args) {
    
    System.out.println("Enter two numbers");
    int first = 11;
    int second = 12;
    
    System.out.println(first + " " + second);

    // add two numbers
    int sum = first + second;
    System.out.println("The sum is: " + sum);
  }
}

  •  Output:

Enter two numbers
11 12
The sum is: 23

  •  Visit:
Write a Java program to print an Integer Here
How to print an integer entered by an user

In this program, an object of scanner class, reader is created to take input from standard input, Which is keyboard.

Then, Enter a number prompt is printed to give the user a visual cue as to what they should do next.

reader.nextInt() the reads all entered integers from the keyword unless it encounters a new line character \n Enter. The entered integer are then saved to the integer variable number.

If you enter any character which is not an integer, the compiler will throw an InputMismatchException.

Finally, number is printed onto the standard output (system.out) - computer screen using the function println().

  •  Program:

import java.util.Scanner;

public class HelloWorld {

    public static void main(String[] args) {

        // Creates a reader instance which takes
        // input from standard input - keyboard
        Scanner reader = new Scanner(System.in);
        System.out.print("Enter a number: ");

        // nextInt() reads the next integer from the keyboard
        int number = reader.nextInt();

        // println() prints the following line to the output screen
        System.out.println("You entered: " + number);
    }
}

  •  Output:

Enter a number: 10
You entered: 10

  •  Visit:

Write a Java program to add two integers Here
Write a C Program to Find G.C.D (Greatest Common Divisor) Using Recursion


In this C Program, we are reading the two integer number using 'a' and 'b' variable. The gcd() function is used to find the GCD of two entered integers using recursion.

While loop is used to check that both the 'a' and 'b' variable is greater than the value of 'b' variable.

If the condition is true, then return two integer variable values. Otherwise, if the condition is false, then execute else statement and return the values of two integer variable. Print the GCD of a given number using printf statement.

  •  Program:

#include <stdio.h>
int hcf(int n1, int n2);
int main() {
    int n1, n2;
    printf("Enter two positive integers: ");
    scanf("%d %d", &n1, &n2);
    printf("G.C.D of %d and %d is %d.", n1, n2, hcf(n1, n2));
    return 0;
}

int hcf(int n1, int n2) {
    if (n2 != 0)
        return hcf(n2, n1 % n2);
    else
        return n1;
}

  • Output:

Enter two positive integers: 366
60
G.C.D of 366 and 60 is 6.

  • Visit:

Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 ) Here
Write a C program to find out distance travelled by the equation d=ut+at^2 Here
Write a C program to find that the accepted number is negative or positive or zero Here
Write a program to read mark of a student from keyboard the student is pass or fail ( using if else ) Here
Write a program to read three numbers from keyboard and find out maximum out of these three. (nested if else) Here
Write a program to check whether the entered character is capital, small letter, digit or any special character Here
Write a program to read marks from keyboard and your program should display equivalent grade according to following table (if else ladder) Here
Write a C program to prepare pay slip using following data Here
Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday Here
Write a C program to find out the Maximum and Minimum number from given 10 numbers Here
Write a C program to input an integer number and check the last digit of number is even or odd Here 
Write a C program to find factorial of a given number Here
Write a C program to reverse a number Here
Write a C program to generate first n number of Fibonacci series Here
Write a C program to find out sum of first and last digit of a given number Here
Write a C program to find the sum and average of different numbers Here
Write a program to calculate average and total of 5 students for 3 subjects Here
Read five persons height and weight and count the number of person having height greater than 170 and weight less than 50 Here
Write a program to check whether the given number is prime or not Here
Write a program to evaluate the series 1^2+2^2+2+3^2+……+n^2 Here
Write a C program to find 1+1/2+1/3+1/4+....+1/n Here
Write a C program to find 1+1/2!+1/3!+1/4!+.....+1/n! Here
Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9! Here
Write a C program to read and store the roll no and marks of 20 students using array Here
Write a C program to find out which number is even or odd from list of 10 number using array Here
Write a program to find maximum element from 1-Dimensional array Here
Write a C program to calculate the average, geometric and harmonic mean of n elements in a array Here
Write a program to delete a character in given string Here
Write a program to replace a character in given string Here
Write a program to find a character from given string Here
Write a program to sort given array in ascending order Here
Write a program to reverse string Here
Write a program to convert string into upper case Here
Write a program that defines a function to add first n numbers Here
Write a function in the program to return 1 if number is prime otherwise return 0 Here
Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling function Here
Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n! Here
Write a program to find factorial of a number using recursion Here
Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents Here
Write a program to read structure elements from keyboard Here
C program to find Roots of a Quadratic Equation.

In this program, you will learn to find the roots of a quadratic equation in c programming.

The standard form of a quadratic equation is:

ax2 + bx + c = 0, where
a, b and c are real numbers and a!=0

The terms b2; - 4ac is known as the discriminant of a quadratic equation. It tells the nature of the roots.

1.    If the discriminant is greater than o, the roots are real and different.
2.    If the discriminant is less than o, the roots are complex and different.
3.    If the discriminant is equal to o, the roots are real and equal.

Steps to find the square roots of the quadratic equation.

1.    Initialize all the variables used in the quadratic equation.
2.    Take inputs of all coefficient variables x, y and z from the user.
3.    And then, find the discriminant of the quadratic equation using the formula: Discriminant = (y*y)-(4*x*z).
4.    Calculate the roots based on the nature of the discriminant of the quadratic equation.
5.    If discriminant > 0, then
       Root1 = (-y + sqrt(det)) / (2*x)
       Root2 = (-y + sqrt(det)) / (2*x)
       print the roots are real and distinct.
6.    Else if (discriminant = 0) then,
       Root1 = Root2 = -y / (2*x).
       print both roots are real and equal.
7.    Else (discriminant < 0), the roots are distinct complex where,
       Real part of the root is: Root1 = Root2 = -y / (2*x) or real = -y / (2*x).
       Imaginary part of the root is: sqrt( -discriminant)/ (2*x).
       print both roots are imaginary, where first root is (r + i) img and second root is (r - i) img.
8.    Exit ot terninate the program.

  •  Program:

#include <math.h>
#include <stdio.h>
int main() {
    double a, b, c, discriminant, root1, root2, realPart, imagPart;
    printf("Enter coefficients a, b and c: ");
    scanf("%lf %lf %lf", &a, &b, &c);

    discriminant = b * b - 4 * a * c;

    // condition for real and different roots
    if (discriminant > 0) {
        root1 = (-b + sqrt(discriminant)) / (2 * a);
        root2 = (-b - sqrt(discriminant)) / (2 * a);
        printf("root1 = %.2lf and root2 = %.2lf", root1, root2);
    }

    // condition for real and equal roots
    else if (discriminant == 0) {
        root1 = root2 = -b / (2 * a);
        printf("root1 = root2 = %.2lf;", root1);
    }

    // if roots are not real
    else {
        realPart = -b / (2 * a);
        imagPart = sqrt(-discriminant) / (2 * a);
        printf("root1 = %.2lf+%.2lfi and root2 = %.2f-%.2fi", realPart, imagPart, realPart, imagPart);
    }

    return 0;
} 

  •  Output:

Enter coefficients a, b and c: 2.3
4
5.6
root1 = -0.87+1.30i and root2 = -0.87-1.30i

Pseudo code of the Quadratic Equation

  1. Start
  2. Input the coefficient variable, x, y and z.
  3. D <- sqrt (y*y-4*x*z).
  4. R1 <- (-y+D)/(2*x).
  5. R2 <- (-y-D)/(2*x).
  6. Print the roots R1 and R2.
  7. Stop

  • Visit:

Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 ) Here
Write a C program to find out distance travelled by the equation d=ut+at^2 Here
Write a C program to find that the accepted number is negative or positive or zero Here
Write a program to read mark of a student from keyboard the student is pass or fail ( using if else ) Here
Write a program to read three numbers from keyboard and find out maximum out of these three. (nested if else) Here
Write a program to check whether the entered character is capital, small letter, digit or any special character Here
Write a program to read marks from keyboard and your program should display equivalent grade according to following table (if else ladder) Here
Write a C program to prepare pay slip using following data Here
Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday Here
Write a C program to find out the Maximum and Minimum number from given 10 numbers Here
Write a C program to input an integer number and check the last digit of number is even or odd Here 
Write a C program to find factorial of a given number Here
Write a C program to reverse a number Here
Write a C program to generate first n number of Fibonacci series Here
Write a C program to find out sum of first and last digit of a given number Here
Write a C program to find the sum and average of different numbers Here
Write a program to calculate average and total of 5 students for 3 subjects Here
Read five persons height and weight and count the number of person having height greater than 170 and weight less than 50 Here
Write a program to check whether the given number is prime or not Here
Write a program to evaluate the series 1^2+2^2+2+3^2+……+n^2 Here
Write a C program to find 1+1/2+1/3+1/4+....+1/n Here
Write a C program to find 1+1/2!+1/3!+1/4!+.....+1/n! Here
Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9! Here
Write a C program to read and store the roll no and marks of 20 students using array Here
Write a C program to find out which number is even or odd from list of 10 number using array Here
Write a program to find maximum element from 1-Dimensional array Here
Write a C program to calculate the average, geometric and harmonic mean of n elements in a array Here
Write a program to delete a character in given string Here
Write a program to replace a character in given string Here
Write a program to find a character from given string Here
Write a program to sort given array in ascending order Here
Write a program to reverse string Here
Write a program to convert string into upper case Here
Write a program that defines a function to add first n numbers Here
Write a function in the program to return 1 if number is prime otherwise return 0 Here
Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling function Here
Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n! Here
Write a program to find factorial of a number using recursion Here
Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents Here
Write a program to read structure elements from keyboard Here
 C Program to display its own source code as output

This program is to display its own source code. it also explains logic to print source code of a C program itself. You should have basic knowledge of file handling in c to wrote c program to print source code of itself as output.

  •  Program:

#include <stdio.h>
int main() {
    FILE *fp;
    int c;
   
    // open the current input file
    fp = fopen(__FILE__,"r");

    do {
         c = getc(fp);   // read character 
         putchar(c);     // display character
    }
    while(c != EOF);  // loop until the end of file is reached
    
    fclose(fp);
    return 0;
}

  •  Output:

#include <stdio.h>
int main() {
    FILE *fp;
    int c;
   
    // open the current input file
    fp = fopen(__FILE__,"r");

    do {
         c = getc(fp);   // read character 
         putchar(c);     // display character
    }
    while(c != EOF);  // loop until the end of file is reached
    
    fclose(fp);
    return 0;
}

  •  Explain:

Here, there is a predefined macro named __FILE__ that gives the name of the current input file.

#include <stdio.h>
int main() {

   // location the current input file.
   printf("%s",__FILE__);
}

  •  Steps:

  1. Open the file you are currently writing using statement fopen(__FILE__,"r") and assign it to the pointer fp.
  2. Scan the every character of the file and store it in the variable ch. Print it using statement putchar(ch).
  3. Do step 2 until EOF(end of file).
  4. Then close the file and exit.

  •  Visit:

Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 ) Here
Write a C program to find out distance travelled by the equation d=ut+at^2 Here
Write a C program to find that the accepted number is negative or positive or zero Here
Write a program to read mark of a student from keyboard the student is pass or fail ( using if else ) Here
Write a program to read three numbers from keyboard and find out maximum out of these three. (nested if else) Here
Write a program to check whether the entered character is capital, small letter, digit or any special character Here
Write a program to read marks from keyboard and your program should display equivalent grade according to following table (if else ladder) Here
Write a C program to prepare pay slip using following data Here
Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday Here
Write a C program to find out the Maximum and Minimum number from given 10 numbers Here
Write a C program to input an integer number and check the last digit of number is even or odd Here 
Write a C program to find factorial of a given number Here
Write a C program to reverse a number Here
Write a C program to generate first n number of Fibonacci series Here
Write a C program to find out sum of first and last digit of a given number Here
Write a C program to find the sum and average of different numbers Here
Write a program to calculate average and total of 5 students for 3 subjects Here
Read five persons height and weight and count the number of person having height greater than 170 and weight less than 50 Here
Write a program to check whether the given number is prime or not Here
Write a program to evaluate the series 1^2+2^2+2+3^2+……+n^2 Here
Write a C program to find 1+1/2+1/3+1/4+....+1/n Here
Write a C program to find 1+1/2!+1/3!+1/4!+.....+1/n! Here
Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9! Here
Write a C program to read and store the roll no and marks of 20 students using array Here
Write a C program to find out which number is even or odd from list of 10 number using array Here
Write a program to find maximum element from 1-Dimensional array Here
Write a C program to calculate the average, geometric and harmonic mean of n elements in a array Here
Write a program to delete a character in given string Here
Write a program to replace a character in given string Here
Write a program to find a character from given string Here
Write a program to sort given array in ascending order Here
Write a program to reverse string Here
Write a program to convert string into upper case Here
Write a program that defines a function to add first n numbers Here
Write a function in the program to return 1 if number is prime otherwise return 0 Here
Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling function Here
Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n! Here
Write a program to find factorial of a number using recursion Here
Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents Here
Write a program to read structure elements from keyboard Here
Hollow Pyramid Star Pattern

For the pyramid at the first line it will print one star, and at the last line it will print n number of stars. For other lines it will print exactly two stars at the end of the line, and there will be some blank spaces between these two stars.

  •  Program:

#include<stdio.h>

void main()
{
    int a,b,c,d,e;
    printf("Enter the number of rows: ");
    scanf("%d",&a);
    b=a;
    for(c=1;c<=a;c++)
    {
        for(d=1;d<=b-1;d++)
        {
            printf(" ");
        }
        for(e=1;e<=2*c-1;e++)
        {
            if(e==1 || e==2*c-1 || c==a)
            {
                printf("*");
            }
            else
            {
                printf(" ");
            }
        }
        b--;
        printf("\n");
    }
}

  •  Output:

Enter the number of rows: 5 * * * * * * * *********

  •  Star Pattern:

Write a C program to print full diamond star pattern Here
Write a C program to print following A-B-C patterns Here
Write a C program to print following 1-2-3 patterns Here
Write a C Program to print following patterns Here

  •  Visit:

Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 ) Here
Write a C program to find out distance travelled by the equation d=ut+at^2 Here
Write a C program to find that the accepted number is negative or positive or zero Here
Write a program to read mark of a student from keyboard the student is pass or fail ( using if else ) Here
Write a program to read three numbers from keyboard and find out maximum out of these three. (nested if else) Here
Write a program to check whether the entered character is capital, small letter, digit or any special character Here
Write a program to read marks from keyboard and your program should display equivalent grade according to following table (if else ladder) Here
Write a C program to prepare pay slip using following data Here
Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday Here
Write a C program to find out the Maximum and Minimum number from given 10 numbers Here
Write a C program to input an integer number and check the last digit of number is even or odd Here 
Write a C program to find factorial of a given number Here
Write a C program to reverse a number Here
Write a C program to generate first n number of Fibonacci series Here
Write a C program to find out sum of first and last digit of a given number Here
Write a C program to find the sum and average of different numbers Here
Write a program to calculate average and total of 5 students for 3 subjects Here
Read five persons height and weight and count the number of person having height greater than 170 and weight less than 50 Here
Write a program to check whether the given number is prime or not Here
Write a program to evaluate the series 1^2+2^2+2+3^2+……+n^2 Here
Write a C program to find 1+1/2+1/3+1/4+....+1/n Here
Write a C program to find 1+1/2!+1/3!+1/4!+.....+1/n! Here
Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9! Here
Write a C program to read and store the roll no and marks of 20 students using array Here
Write a C program to find out which number is even or odd from list of 10 number using array Here
Write a program to find maximum element from 1-Dimensional array Here
Write a C program to calculate the average, geometric and harmonic mean of n elements in a array Here
Write a program to delete a character in given string Here
Write a program to replace a character in given string Here
Write a program to find a character from given string Here
Write a program to sort given array in ascending order Here
Write a program to reverse string Here
Write a program to convert string into upper case Here
Write a program that defines a function to add first n numbers Here
Write a function in the program to return 1 if number is prime otherwise return 0 Here
Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling function Here
Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n! Here
Write a program to find factorial of a number using recursion Here
Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents Here
Write a program to read structure elements from keyboard Here
Newer Posts Older Posts Home

ABOUT

I could look back at my life and get a good story out of it. It's a picture of somebody trying to figure things out.

SUBSCRIBE & FOLLOW

POPULAR POSTS

  • Write a C program to enter a distance in to kilometer and convert it in to meter, feet, inches and centimeter
  • Write a C program to computer Fahrenheit from centigrade ( f=1.8*c+32 )
  • Write a C program to interchange two numbers
  • Write a program to that performs as calculator (Addition, Multiplication, Division, Subtraction)
  • Write a program to find area of triangle ( a=h*b*0.5 ) | a=area, h=height, b=base

Advertisement

👆 Shopping 👆

Powered by Blogger

Archive

  • February 20241
  • January 20242
  • November 20234
  • October 20236
  • September 20236
  • August 20235
  • April 20231
  • March 20231
  • October 20221
  • August 20223
  • July 20222
  • May 20223
  • April 20222
  • March 20221
  • January 20221
  • December 20216
  • November 20214
  • October 20211
  • September 20216
  • August 202127
  • July 20216

Report Abuse

Copyright

  • Home
  • About us
  • Privacy Policy
  • Disclaimer
  • Contact Us

About Me

Nilesh Patel
View my complete profile

Copyright © Programmator. Designed by OddThemes