<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Quadratic Equation by N ANITHA anitha.it</title>
      <link>https://padlet.com/anitha_it/c1rosp774kr6geyl</link>
      <description>Write ur name and roll number</description>
      <language>en-us</language>
      <pubDate>2021-09-14 14:45:18 UTC</pubDate>
      <lastBuildDate>2021-09-15 01:18:33 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Quadratic equation</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739817520</link>
         <description><![CDATA[<pre>#include &lt;stdio.h&gt;
#include &lt;math.h&gt;
int main()
{
  float a,b,c,r1,r2;
  printf("enter the value of a,b,c");
  scanf("%f%f%f",&amp;a,&amp;b,&amp;c);
   d=b*b-4*a*c;
  if(d&gt;0)
  {
  r1=-b+sqrt (d) /(2*a);
  r2=-b-sqrt (d) /(2*a);
  printf("the real root = %f%f",r1,r2);
  }
  else if(d==0)
  {
  r1=-b/(2*a);
  r2=-b/(2*a);
  printf("root are equal=%f%f",r1,r2);
  }
  else
  {
  printf("roots are imaginary");
   }
    return 0;
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:12:06 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739817520</guid>
      </item>
      <item>
         <title>NAVANEETHAN(20EER065)</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739864729</link>
         <description><![CDATA[<div># include &lt;stdio.h&gt;<br># include &lt;math.h&gt;<br>int main()<br>{<br>	float a,b,c,d,root1,root2,real,imag,i;<br>	printf("enter your values b*b-4*a*c");<br>	scanf("%f%f%f",&amp;b,&amp;a,&amp;c);<br>	d=b*b-4*a*c;<br>	printf("the value of d is=%f",d);<br>&nbsp; &nbsp;if (d&gt;0)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp;	root1=-b+sqrt(d)/(2*a);<br>&nbsp; &nbsp;	root2=-b-sqrt(d)/(2*a);<br>&nbsp; &nbsp;	printf("ROOTS ARE REAL AND UNEQUAL root1=%f,root2=%f",root1,root2);}<br>&nbsp; &nbsp;	else if (d==0)<br>&nbsp; &nbsp;	 {root1=-b/(2*a);<br>&nbsp; &nbsp;	 root2=root2;<br>&nbsp; &nbsp;	 printf("ROOTS ARE AND EQUAL root1=%f,root2=%f",root1,root2);}<br>&nbsp; &nbsp;	 else<br>&nbsp; &nbsp; &nbsp;      real=-b/(2*a);<br>	&nbsp; imag=sqrt(d)/(2*a);<br>	&nbsp; printf("ROOTS ARE IMAGINARY root1=%f+i%f,root2=%f-i%f",real,imag,real,imag);<br>	&nbsp; return 0; 	&nbsp;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:25:24 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739864729</guid>
      </item>
      <item>
         <title>SABITHRA M 20EER081</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739884238</link>
         <description><![CDATA[<div>#include&lt;stdio. h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,imag,i;<br>printf("Enter the a, b, c values");<br>scanf("%f %f",&amp;a, &amp;b);<br>d=b*b-4*a*c;<br>if(d&gt;0)<br>{<br>root1=((-b+sqrt(d))/(2*a));<br>root2=((-b-sqrt(d))/(2*a));<br>printf("roots are real and different=%f %f" ,root1,root2);<br>}<br>else if(d==0)<br>{<br>root1=(-b)/(2*a));<br>root2=root1;<br>printf("roots are real and equal=%f %f",root1,root2);<br>}<br>else<br>{<br>real=(-b)/(2*a);<br>imag=(sqrt(-d)/(2*a));<br>printf(" root1=%f+i%f,root2=%f-i%f",real,imag,real,imag);<br>return 0;<br>}<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:31:09 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739884238</guid>
      </item>
      <item>
         <title>NAVEENA T 20EER066</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739953945</link>
         <description><![CDATA[<div>#include&lt;studio.h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,jmag,i;<br>printf("Enter your value of a,b,c");<br>scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>d=b*b-4*a*c;<br>if ( d&gt;0)<br>{<br>root 1=(-b+sqrt(d))/(2*a);<br>root2=(-b-sqrt(d))/(2*a);<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root 1,root 2);}<br>else if (d==0)<br>{<br>root 1=-(b/2*a);<br>root2=root1;<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root1,root2);<br>}<br>else if (d&lt;0)<br>{<br>real =(b/2*a);<br>imag=sqrt(-d)/(2*a);<br>printf ("root 1=%f+i%f,root2=%f-i%f", real,imag,real,imag);<br>return 0;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:51:09 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739953945</guid>
      </item>
      <item>
         <title>Mohamed Faruk Abdulla R</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739957613</link>
         <description><![CDATA[<div>include&lt;studio.h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,jmag,i;<br>printf("Enter your value of a,b,c");<br>scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>d=b*b-4*a*c;<br>if ( d&gt;0)<br>{<br>root 1=(-b+sqrt(d))/(2*a);<br>root2=(-b-sqrt(d))/(2*a);<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root 1,root 2);}<br>else if (d==0)<br>{<br>root 1=-(b/2*a);<br>root2=root1;<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root1,root2);<br>}<br>else if (d&lt;0)<br>{<br>real =(b/2*a);<br>imag=sqrt(-d)/(2*a);<br>printf ("root 1=%f+i%f,root2=%f-i%f", real,imag,real,imag);<br>return 0;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:52:18 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739957613</guid>
      </item>
      <item>
         <title>SUPRAJA A</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739958333</link>
         <description><![CDATA[<div><br><br>#include&lt;stdio. h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,imag,root1,<br>root2;<br>printf("Enter the values");<br>scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>d=b*b-4*a*c;<br>if(d&gt;0)<br>{<br>root1=((-b+sqrt(d))/(2*a));<br>root2=((-b-sqrt(d))/(2*a));<br>printf("roots are real and different=%f%f" ,root1,root2);<br>}<br>else if(d=0)<br>{<br>root1=(-b)/(2*a));<br>root2=root1;<br>printf("roots are real and equal=%f%f",root1,root2);<br>}<br>else<br>{<br>real=(-b)/(2*a);<br>imag=(sqrt(-d)/(2*a));<br>printf(" root1=%f+i%f,root2=%f+i%f",<br>real,imag,real,imag);<br>}<br>return 0;<br>}<br><br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:52:33 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739958333</guid>
      </item>
      <item>
         <title>SHARUNITHI G</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739968632</link>
         <description><![CDATA[<div>#include&lt;studio.h&gt;<br># include&lt;math.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; float a,b,c,d,m,x1,x2,x,r,i;<br>&nbsp; &nbsp; printf("enter the value of a,b and c");<br>&nbsp; &nbsp; scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>&nbsp; &nbsp; d=b*b-4*a*c;<br>&nbsp; &nbsp; m=-b;<br>&nbsp; &nbsp; if(d&gt;0)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; x1=(m+sqrt(d))/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; x2=(m-sqrt(d))/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("roots are real and distict");<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("x1=%f and x2=%f",x1,x2);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; else if (d==0)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("roots are equal and distinct");<br>&nbsp; &nbsp; &nbsp; &nbsp; x=m/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("x=%f",x);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("roots are complex");<br>&nbsp; &nbsp; &nbsp; &nbsp; r=m/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; i=sqrt(-d)/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("x1=%f-i%f and x2=%f+i%f",r,i,r,i)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 15:55:41 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1739968632</guid>
      </item>
      <item>
         <title>Priyadharshini T</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740038858</link>
         <description><![CDATA[<div>include&lt;studio.h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,jmag,i;<br>printf("Enter your value of a,b,c");<br>scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>d=b*b-4*a*c;<br>if ( d&gt;0)<br>{<br>root 1=(-b+sqrt(d))/(2*a);<br>root2=(-b-sqrt(d))/(2*a);<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root 1,root 2);}<br>else if (d==0)<br>{<br>root 1=-(b/2*a);<br>root2=root1;<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root1,root2);<br>}<br>else if (d&lt;0)<br>{<br>real =(b/2*a);<br>imag=sqrt(-d)/(2*a);<br>printf ("root 1=%f+i%f,root2=%f-i%f", real,imag,real,imag);<br>return 0;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:18:44 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740038858</guid>
      </item>
      <item>
         <title>PARVATHAVARTHINI S 20EER068</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740058188</link>
         <description><![CDATA[<div>#include &lt;math.h&gt;<br>#include &lt;stdio.h&gt;<br>int main()&nbsp;<br>{<br>float a, b, c, d, root1, root2, realPart, imagPart;<br>printf("Enter coefficients a, b and c: ");<br>scanf("%f %f %f", &amp;a, &amp;b, &amp;c);<br>d = b * b - 4 * a * c;<br>if (d &gt; 0)<br>root1 = (-b + sqrt(d)) / (2 * a);<br>root2 = (-b - sqrt(d)) / (2 * a);<br>printf("root1 = %f and root2 = %f", root1, root2);<br>printf("the roots are real and different");<br>{<br>else if (d == 0)&nbsp;<br>root1 = root2 = -b / (2 * a);<br>printf("root1 = root2 = %f;", root1);<br>printf("the roots are real and equal");<br>else<br>realPart = -b / (2 * a);<br>imagPart = sqrt(-d) / (2 * a);<br>printf("root1 = %f +i %f and root2 = %f -i %f", realPart, imagPart, realPart, imagPart);<br>printf("the roots are imaginary");<br>}<br>return 0;<br>}</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:25:03 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740058188</guid>
      </item>
      <item>
         <title>20EER088</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740072617</link>
         <description><![CDATA[<div>SENTHAMIL ARASU&nbsp;<br>include&lt;studio.h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>float a,b,c,d,root1,root2,real,jmag,i;<br>printf("Enter your value of a,b,c");<br>scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>d=b*b-4*a*c;<br>if ( d&gt;0)<br>{<br>root 1=(-b+sqrt(d))/(2*a);<br>root2=(-b-sqrt(d))/(2*a);<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root 1,root 2);}<br>else if (d==0)<br>{<br>root 1=-(b/2*a);<br>root2=root1;<br>printf ("%f,%f roots are real and different root1=%f,root2=%f",root1,root2);<br>}<br>else if (d&lt;0)<br>{<br>real =(b/2*a);<br>imag=sqrt(-d)/(2*a);<br>printf ("root 1=%f+i%f,root2=%f-i%f", real,imag,real,imag);<br>return 0;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:29:54 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740072617</guid>
      </item>
      <item>
         <title>PRIYA AMRISHA D  20EER076 </title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740130635</link>
         <description><![CDATA[<div>#include&lt;stdio.h&gt;<br>#include &lt;math.h&gt;<br>int main()<br>	{<br>		float a,b,c,d,r1,r2,real,imag;<br>		printf("enter the coefficient values");<br>		scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>		d=pow(b,2)-4*a*c;<br>		if(d&gt;0)<br>		{<br>			r1=(-b+sqrt(d))/2*a;<br>			r2=(-b-sqrt(d))/2*a;<br>			printf("roots are real and different %f,%f",r1,r2);<br>		}	<br>		else if(d==0)<br>		{<br>			r1=-b/2*a;<br>			r2=r1;<br>			printf("roots are equal %f,%f",r1,r2);<br>		}<br>		else<br>		{<br>			real=-b/2*a;<br>			imag=sqrt(-d)/2*a;<br>			printf("r1=%f+i%f,r2=%f-i%f",real,imag,real,imag);<br>		}<br>		return 0;<br>		}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:50:18 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740130635</guid>
      </item>
      <item>
         <title>20EER075 PRAVEENRAJ AM </title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740130814</link>
         <description><![CDATA[<div>#include&lt;stdio.h&gt;<br>#include &lt;math.h&gt;<br>int main()<br>	{<br>		float a,b,c,d,r1,r2,real,imag;<br>		printf("enter the coefficient values");<br>		scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>		d=pow(b,2)-4*a*c;<br>		if(d&gt;0)<br>		{<br>			r1=(-b+sqrt(d))/2*a;<br>			r2=(-b-sqrt(d))/2*a;<br>			printf("roots are real and different %f,%f",r1,r2);<br>		}	<br>		else if(d==0)<br>		{<br>			r1=-b/2*a;<br>			r2=r1;<br>			printf("roots are equal %f,%f",r1,r2);<br>		}<br>		else<br>		{<br>			real=-b/2*a;<br>			imag=sqrt(-d)/2*a;<br>			printf("r1=%f+i%f,r2=%f-i%f",real,imag,real,imag);<br>		}<br>		return 0;<br>		}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:50:22 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740130814</guid>
      </item>
      <item>
         <title>RANJITH KUMAR T</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740140539</link>
         <description><![CDATA[<div>#include&lt;math.h&gt;<br>#include&lt;stdio.h&gt;<br>Int main()<br>{<br>&nbsp;float a.,b,c,root1,root2,real,img,i;<br>&nbsp;printf("enter the value of a,b,c");<br>&nbsp;scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>&nbsp;d=(pow(b,2)-4*a*c)/2*a;<br>&nbsp; &nbsp;If(d=0)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; root1=(-b+sqrt(d))/2*a;<br>&nbsp; &nbsp; &nbsp; &nbsp; root2=(-b-sqrt(d))/2*a;<br>&nbsp; &nbsp; &nbsp; &nbsp; Printf("the roots are real and unequal");<br>&nbsp;printf("root1=%f,root2=%f",root1,root2);<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp;else if(d==0)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; root1=-b/2*a;<br>&nbsp; &nbsp; &nbsp; root2=root1;<br>&nbsp; &nbsp; &nbsp; printf("the roots are equal");<br>&nbsp;printf("root1=%f,root2=%f",root1,root2);<br>&nbsp; &nbsp; }<br>&nbsp;else<br>&nbsp; &nbsp; {<br>&nbsp;root1=real-i*img;<br>&nbsp;root2=real+i*img;<br>&nbsp;printf("the roots are imaginary");<br>&nbsp;printf("root1=%f,root2=%f",real,img,real,img;<br>&nbsp; &nbsp;}<br>return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 16:53:43 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740140539</guid>
      </item>
      <item>
         <title>PRADEEP V[20EER071]</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740166383</link>
         <description><![CDATA[<div>#include&lt;studio.h&gt;<br>#include&lt;math.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; float a,b,c,d,root1,root2,real,imag;<br>&nbsp; &nbsp; printf("Enter your value of a,b,c");<br>&nbsp; &nbsp; scanf("%f%f%f",&amp;a,&amp;b,&amp;c);<br>&nbsp; &nbsp; d=b*b-4*a*c;<br>&nbsp; &nbsp; if ( d&gt;0)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;root1=(-b+sqrt(d))/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;root2=(-b-sqrt(d))/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("roots are real and&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;different=%f,%f",root1,root2);<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp;else if(d==0)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; root1=-(b/2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; root2=root1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("roots are equal=%f,%f",root1,root2);<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp;else(d&lt;0)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; real =(b/2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; imag=sqrt(-d)/(2*a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("roots are imaginary,root1=%f+i%f,root2=%f-i%f", real,imag,real,imag);<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-14 17:02:18 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1740166383</guid>
      </item>
      <item>
         <title>LOGESH</title>
         <author></author>
         <link>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1741140051</link>
         <description><![CDATA[<div>20EER058<br>#include&lt;stdio.h&gt;<br>#include&lt;math.h&gt;<br>inter main()&nbsp;<br>{<br>&nbsp; &nbsp; &nbsp;float a, b, b, d, root1, root2, real, imagine;<br>&nbsp; &nbsp; &nbsp;print f("enter the value of a, b, c") ;<br>&nbsp; &nbsp; &nbsp;scanf("%f%f%f", &amp;a, &amp;b, &amp;c) ;<br>&nbsp; &nbsp; &nbsp;d=b*b-4*a*c;<br>&nbsp; &nbsp; &nbsp;IF(d&gt;0)&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; root1=((-b+sqrt(d) /(2*a)) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; root2=((-b-sqrt(d) /(2*a)) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("root1=%f , root2=%f", root1, root2) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("the roots are real and distinct") ;<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ELSE IF (d==0) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;root1=root2=(-b/(2*a)) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("roots are real and equal") ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ELSE<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;real=(-b/(2*a)) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;imagine=(sqrt((-d) /(2*a))) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("root1=%f+%f, root2=%f-%f", real, imag) ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("roots are imaginary") ;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp;Return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-15 01:18:33 UTC</pubDate>
         <guid>https://padlet.com/anitha_it/c1rosp774kr6geyl/wish/1741140051</guid>
      </item>
   </channel>
</rss>
