findddout / C

0 stars 0 forks source link

The assignment provided by my college #5

Open findddout opened 4 weeks ago

findddout commented 4 weeks ago
  1. Find maximum of values that user enters. First user enters how many numbers it wants to enter, then your program asks from user that many times, and it finds maximum number.
  2. Like previous exercise but finding min
  3. Calculate exponentiation of numbers. That is, user enters x and y and you calculate xy.
  4. Calculate 12% tax of a value. User enters a value and your program calculate 12% tax and final value excluding tax
  5. Find reminder of division of two values. User enters x and y and your program calculate reminder of x/y
  6. Calculate sum of N numbers and Find percentage of each 7.Findfactorialofanumber: n(n-1)(n-2)(n-3)(n-4)..1
  7. Get the month number and print the name of the month. For example: user enters 4 and your program prints April
  8. Check Whether Number is Prime or not. 1,3,5,7,11,13,17,19... are prime numbers
  9. Write a program that convert a decimal number to binary . 15=(1111)2