Citaat:
	
	
		
			
				Droyd schreef: 
Hopelijk bedoel je dit 
			
		 | 
	
	
 dat bedoelde ik inderdaad. Ik wist niet meer wat het nou was. MAar ik heb het al opgelost via het "exacte vakken" forum. Daar waren ze wat sneller  

 .
Voor de gene die het interessant vinden om te zien....het is gelukt om het programma te maken, dus hier is ie:
------------------------------------------
#include <stdio.h>
#include <math.h>
#include <conio.h>
main()
{
	float v, f, b, b2, N;
   printf("Geef de voorwerpafstand ");
   scanf("%f", &v);
   printf("Geef de brandpuntafstand ");
   scanf("%f", &f);
   b2 = pow(f, -1) - pow(v, -1);
   b = pow(b2, -1);
   N = fabs(b/v);
   printf("De beeldafstand is: %5.2f\n",b);
   printf("De vergroting is: %5.2f\n",N);
   getch();
   return 0;
   }