<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Java program to prints all real solutions to the quadratic equation ax2+bx+c = 0	</title>
	<atom:link href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Thu, 19 Mar 2015 15:20:53 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: smiley sreenu		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/comment-page-1/#comment-90574</link>

		<dc:creator><![CDATA[smiley sreenu]]></dc:creator>
		<pubDate>Thu, 19 Mar 2015 15:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1365#comment-90574</guid>

					<description><![CDATA[output????????]]></description>
			<content:encoded><![CDATA[<p>output????????</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Getoar		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/comment-page-1/#comment-54679</link>

		<dc:creator><![CDATA[Getoar]]></dc:creator>
		<pubDate>Mon, 01 Dec 2014 15:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1365#comment-54679</guid>

					<description><![CDATA[import java.util.Scanner;
public class EkuacioniKuadratik
{
	public static void main(String[] arg)
	{
		Scanner sc=new Scanner(System.in);
		System.out.print(&quot;Vlera e a: &quot;);
		double a=sc.nextDouble();
		System.out.print(&quot;Vlera e b: &quot;);
		double b=sc.nextDouble();
		System.out.print(&quot;Vlera e c: &quot;);
		double c=sc.nextDouble();
		
		if(a==0&#038;&#038;b!=0)                                   
		{
		System.out.println(&quot;Ekuacioni eshte linear dhe x= &quot;+(-c/b));
		System.exit(0);
		}
		if(a==0&#038;&#038;b==0&#038;&#038;c!=0)
		{
			System.out.println(&quot;Ekuacioni nuk ka zgjidhje&quot;);
			System.exit(0);
		}
		if(a==0&#038;&#038;b==0&#038;&#038;c==0)
		{
			System.out.print(&quot;Sistemi eshte i pacaktuar&quot;);
			System.exit(0);
		}
		double d=Math.pow(b,2)-4*a*c;
		
		if(d&#060;0)
		{
			d=Math.abs(d);
			double x1=(-b+Math.sqrt(d))/2*a;
			double x2=(-b-Math.sqrt(d))/2*a;
			System.out.println(&#034;x1=&#034;+x1+&#034;i , x2=&#034;+x2+&#034;i&#034;);
		}
		else{
		double x1=(-b+Math.sqrt(d))/2*a;
		double x2=(-b-Math.sqrt(d))/2*a;
		System.out.println(&#034;x1=&#034;+x1+&#034; ,x2=&#034;+x2);
	}
	}
	
}]]></description>
			<content:encoded><![CDATA[<p>import java.util.Scanner;<br />
public class EkuacioniKuadratik<br />
{<br />
	public static void main(String[] arg)<br />
	{<br />
		Scanner sc=new Scanner(System.in);<br />
		System.out.print(&#8220;Vlera e a: &#8220;);<br />
		double a=sc.nextDouble();<br />
		System.out.print(&#8220;Vlera e b: &#8220;);<br />
		double b=sc.nextDouble();<br />
		System.out.print(&#8220;Vlera e c: &#8220;);<br />
		double c=sc.nextDouble();</p>
<p>		if(a==0&amp;&amp;b!=0)<br />
		{<br />
		System.out.println(&#8220;Ekuacioni eshte linear dhe x= &#8220;+(-c/b));<br />
		System.exit(0);<br />
		}<br />
		if(a==0&amp;&amp;b==0&amp;&amp;c!=0)<br />
		{<br />
			System.out.println(&#8220;Ekuacioni nuk ka zgjidhje&#8221;);<br />
			System.exit(0);<br />
		}<br />
		if(a==0&amp;&amp;b==0&amp;&amp;c==0)<br />
		{<br />
			System.out.print(&#8220;Sistemi eshte i pacaktuar&#8221;);<br />
			System.exit(0);<br />
		}<br />
		double d=Math.pow(b,2)-4*a*c;</p>
<p>		if(d&lt;0)<br />
		{<br />
			d=Math.abs(d);<br />
			double x1=(-b+Math.sqrt(d))/2*a;<br />
			double x2=(-b-Math.sqrt(d))/2*a;<br />
			System.out.println(&quot;x1=&quot;+x1+&quot;i , x2=&quot;+x2+&quot;i&quot;);<br />
		}<br />
		else{<br />
		double x1=(-b+Math.sqrt(d))/2*a;<br />
		double x2=(-b-Math.sqrt(d))/2*a;<br />
		System.out.println(&quot;x1=&quot;+x1+&quot; ,x2=&quot;+x2);<br />
	}<br />
	}</p>
<p>}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: fifa 15 tips and tricks		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/comment-page-1/#comment-25147</link>

		<dc:creator><![CDATA[fifa 15 tips and tricks]]></dc:creator>
		<pubDate>Sun, 07 Sep 2014 08:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1365#comment-25147</guid>

					<description><![CDATA[I’m not that much of a internet reader to be honest but your sites really 
nice, keep it up! I&#039;ll go ahead and bookmark your 
site to come back later. Cheers]]></description>
			<content:encoded><![CDATA[<p>I’m not that much of a internet reader to be honest but your sites really<br />
nice, keep it up! I&#8217;ll go ahead and bookmark your<br />
site to come back later. Cheers</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tanki online games		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/comment-page-1/#comment-25132</link>

		<dc:creator><![CDATA[tanki online games]]></dc:creator>
		<pubDate>Sun, 07 Sep 2014 07:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1365#comment-25132</guid>

					<description><![CDATA[Thank you for sharing your info. I truly appreciate your efforts and I am waiting for your next post thanks once again.]]></description>
			<content:encoded><![CDATA[<p>Thank you for sharing your info. I truly appreciate your efforts and I am waiting for your next post thanks once again.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: lingesh		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-prints-real-solutions-quadratic-equation-ax2bxc-0/comment-page-1/#comment-9956</link>

		<dc:creator><![CDATA[lingesh]]></dc:creator>
		<pubDate>Wed, 31 Jul 2013 11:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1365#comment-9956</guid>

					<description><![CDATA[Scanner class is used to get the input from the user.
ex:
int x;
Scanner sc = new Scanner();
x=sc.nextInt();   
system.out.print(x);]]></description>
			<content:encoded><![CDATA[<p>Scanner class is used to get the input from the user.<br />
ex:<br />
int x;<br />
Scanner sc = new Scanner();<br />
x=sc.nextInt();<br />
system.out.print(x);</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
