#include <stdio.h> int main (void) { float a=2,b=1; float sum=0,term; do { term=a/b; sum=sum+term; a=a+b; b=a-b; } while(b<=5); printf("the number is %.15f",sum); getch(); return 0; }