C Programming - Assignment 6

 Assignment - 6

------------------------------

  1. Write a program to input two numbers and find the LCM
  2. Write a program to input Principal, rate and time and then calculate Simple Interest.
  3. Write a program to input Principal, Rate and Time and then calculate the compound interest.
  4. Write a program to input any digit number and then find the sum of only those digits which are even.
  5. Write a program to enter any digit number and then find the difference of the sums of even and odd digits
  6. Write a program to input two numbers and multiply them without using multiplication operator.
  7. Write a program to input two numbers and divide one number by another without using division operator.
  8. Write a program to input two limits and then find the sum of all the values between those limits
  9. Write a program to input two limits and then find the sum of the all the even values.
  10. Write an interactive program which asks for choice: 
    1. Addition
    2. Subtraction
    3. Multiplication
    4. Division
        Enter your choice number: 1
       Do you want to do any more: [y/n]:  it keeps on going until user enter n.
  11. Write an interactive program to enter as many numbers as user wishes and find the sum
        and average of those numbers.
12.  Input a three digit number and check it is Pythagoras triplets or not.


Comments