You are on page 1of 3

Song: the warmth of your your love

You shed your blood for me a sinner

Being lost, you showed me the way

Pulled down,you lift me up

Forsaken,you took care of me

You teach me how to grow

All my ennemies are blowed

By your mighty hand

You're more than a friend

You're more than a father

Ohhhh hallelujah

Bridge:

I'm no longer chained to a deep of the past

My chains are broken

My sins are forgiven

No more in the gloom

I'm free from the darkroom

Ref:

Cause I'm

wrapped in the warmth of your love

And I fear no one

And I'm

surrounded by the warmth of your love

And that burns within me

That's why I fear no one


By The warmth of your love

Jesus 😊😊😊😊😊

(Love you heavenly Father 😍😍)

#include <stdio.h>

#include <stdlib.h>

#include <math.h>

int main()

{ int a,b,c;

float j,x1,x2,x0;

printf("soit une equation de la forme: ax²+bx+c=0\n entrez la valeur de a b et c");

scanf("%d %d %d",&a,&b,&c);

j=((b*b)-(4*a*c));

x1=(-b-sqrt(j))/(2*a);

x2=(-b+sqrt(j))/(2*a);

x0=(-b/(2*a));

if(j>0)

printf("les solution sont:%f %f", x1,x2);

if(j==0)

printf("la solution double est: %f", x0);


}

if(j<0)

printf("il n'ya pas de solution");

return 0;

You might also like