Created
July 18, 2013 17:39
-
-
Save MFaFH/6031298 to your computer and use it in GitHub Desktop.
Calculator.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
void add (); | |
void sub (); | |
void mul (); | |
void div (); | |
void sqr (); | |
void prime_factorization (); | |
void factorial (); | |
void sel_func (int); | |
int main (void) | |
{ | |
int s; | |
Input: | |
printf("Input a number [ +(1), -(2), *(3), /(4), ^(5), prime factorization(6), !(7)] : "); | |
scanf("%d",&s); | |
if (s > 7 | s < 1){ | |
printf("Please input again\n"); | |
goto Input; | |
} | |
sel_func (s); | |
goto Input; | |
} | |
void sel_func (int s) | |
{ | |
void (*fptr)(void); | |
switch (s){ | |
case 1: | |
fptr = add; | |
break; | |
case 2: | |
fptr = sub; | |
break; | |
case 3: | |
fptr = mul; | |
break; | |
case 4: | |
fptr = div; | |
break; | |
case 5: | |
fptr = sqr; | |
break; | |
case 6: | |
fptr = prime_factorization; | |
break; | |
case 7: | |
fptr = factorial; | |
break; | |
} | |
fptr(); | |
} | |
void add () | |
{ | |
int a, b; | |
printf("Input two numbers : "); | |
scanf("%d%d", &a,&b); | |
printf("Result = %d\n", a + b); | |
} | |
void sub () | |
{ | |
int a, b; | |
printf("Input two numbers : "); | |
scanf("%d%d", &a,&b); | |
printf("Result = %d\n" , a - b); | |
} | |
void mul () | |
{ | |
int a, b; | |
printf("Input two numbers : "); | |
scanf("%d%d", &a,&b); | |
printf("Result = %d\n", a * b); | |
} | |
void div () | |
{ | |
int a, b; | |
printf("Input two numbers : "); | |
scanf("%d%d", &a,&b); | |
printf("Result = %d\n", a / b); | |
} | |
void sqr (){ | |
int exp, base, i; | |
int result = 1; | |
printf("Input base : "); | |
scanf("%d",&base); | |
printf("Input exp : "); | |
scanf("%d",&exp); | |
for (i = 0; i < exp; ++i) | |
result *= base; | |
printf("%d^%d = %d\n", | |
base,exp,result); | |
} | |
void prime_factorization () | |
{ | |
int n; | |
while (1){ | |
printf("Input a number : "); | |
scanf("%d",&n); | |
if(n < 2) | |
return; | |
} | |
int p = 2; | |
int primes[20]; | |
int index = 0; | |
int i; | |
while (1 != n){ | |
if (0 == (n%p)){ | |
n = n/p; | |
primes[index] = p; | |
++index; | |
p = 2; | |
} else { | |
++p; | |
} | |
} | |
if(1 == index){ | |
printf("Prime number\n"); | |
} else { | |
for (i = 0; i < index - 1; ++i) | |
printf("%d*", primes[i]); | |
printf("%d\n", primes[i]); | |
} | |
return; | |
} | |
void factorial () | |
{ | |
int a, b; | |
int sum = 1; | |
printf("Input a number : "); | |
scanf("%d", &b); | |
for (a = 1; a <= b; ++a) | |
sum *= a; | |
printf("%d!=%d\n",b,sum); | |
} |
void (*fptr)(void); what does means? thanks
fptr
is a pointer to a void function. It will execute the function it is pointing to
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
void (*fptr)(void); what does means? thanks