I give up with this assignment

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-02-14 20:16:11 -06:00
parent 15a01d81fd
commit d5f79e8f20
7 changed files with 241 additions and 69 deletions

View File

@ -0,0 +1,175 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>MP3_CalebFontenot.java</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
<!--
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
.literal {color: #cc7832}
.ST5 {font-family: monospace; font-weight: bold; font-style: italic}
.ST0 {color: #287bde}
.string {color: #6a8759}
.number {color: #6897bb}
.ST4 {color: #9876aa}
.ST6 {color: #ffc66d}
.ST1 {color: #8a653b}
.comment {color: #808080}
.whitespace {color: #505050}
.ST2 {color: #ffc66d; font-family: monospace; font-weight: bold; font-style: italic}
.ST3 {color: #9876aa; font-family: monospace; font-weight: bold; font-style: italic}
-->
</style>
</head>
<body>
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 2/Assignments/MP3_CalebFontenot/src/mp3_calebfontenot/MP3_CalebFontenot.java</td></tr></table>
<pre>
<span class="comment">/*</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java</span><span class="comment"> to edit this template</span>
<span class="comment"> */</span>
<span class="literal">package</span> mp3_calebfontenot;
<span class="literal">import</span> java.util.Scanner;
<span class="comment">/**</span>
<span class="comment"> *</span>
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">caleb</span>
<span class="comment">*/</span>
<span class="literal">public</span> <span class="literal">class</span> MP3_CalebFontenot {
<span class="comment">/**</span>
<span class="comment"> * </span><span class="comment">@param</span> <span class="ST1">args</span> <span class="comment">the</span> <span class="comment">command</span> <span class="comment">line</span> <span class="comment">arguments</span>
<span class="comment">*/</span>
<span class="literal">public</span> <span class="literal">static</span> <span class="literal">void</span> <span class="ST2">main</span>(String[] args)
{
Scanner input = <span class="literal">new</span> Scanner(System.<span class="ST3">in</span>);
System.<span class="ST3">out</span>.print(<span class="string">&quot;</span><span class="string">Enter the first complex number: </span><span class="string">&quot;</span>);
<span class="literal">double</span> a = input.nextDouble();
<span class="literal">double</span> b = input.nextDouble();
Complex c1 = <span class="literal">new</span> Complex(a, b);
System.<span class="ST3">out</span>.print(<span class="string">&quot;</span><span class="string">Enter the second complex number: </span><span class="string">&quot;</span>);
<span class="literal">double</span> c = input.nextDouble();
<span class="literal">double</span> d = input.nextDouble();
Complex c2 = <span class="literal">new</span> Complex(c, d);
System.<span class="ST3">out</span>.println(<span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c1 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> + </span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c2 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> = </span><span class="string">&quot;</span>
+ c1.add(c2));
System.<span class="ST3">out</span>.println(<span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c1 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> - </span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c2 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> = </span><span class="string">&quot;</span>
+ c1.subtract(c2));
System.<span class="ST3">out</span>.println(<span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c1 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> * </span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c2 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> = </span><span class="string">&quot;</span>
+ c1.multiply(c2));
System.<span class="ST3">out</span>.println(<span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c1 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> / </span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string">(</span><span class="string">&quot;</span> + c2 + <span class="string">&quot;</span><span class="string">)</span><span class="string">&quot;</span> + <span class="string">&quot;</span><span class="string"> = </span><span class="string">&quot;</span>
+ c1.divide(c2));
System.<span class="ST3">out</span>.println(<span class="string">&quot;</span><span class="string">|</span><span class="string">&quot;</span> + c1 + <span class="string">&quot;</span><span class="string">| = </span><span class="string">&quot;</span> + c1.abs());
Complex c3 = (Complex) c1.clone();
System.<span class="ST3">out</span>.println(c1 == c3);
System.<span class="ST3">out</span>.println(c3.getRealPart());
System.<span class="ST3">out</span>.println(c3.getImaginaryPart());
}
}
<span class="literal">class</span> Complex {
<span class="literal">private</span> <span class="literal">double</span> <span class="ST4">a</span>;
<span class="literal">private</span> <span class="literal">double</span> <span class="ST4">b</span>;
<span class="literal">private</span> <span class="literal">final</span> <span class="literal">double</span> <span class="comment">i</span> = Math.<span class="ST5">sqrt</span>(-<span class="number">1</span>);
<span class="literal">public</span> Complex()
{
<span class="literal">this</span>.<span class="ST4">a</span> = <span class="number">0</span>;
}
<span class="literal">public</span> Complex(<span class="literal">double</span> a)
{
<span class="literal">this</span>.<span class="ST4">a</span> = a;
<span class="literal">this</span>.<span class="ST4">b</span> = <span class="number">0</span>;
}
<span class="literal">public</span> Complex(<span class="literal">double</span> a, <span class="literal">double</span> b)
{
<span class="literal">this</span>.<span class="ST4">a</span> = a;
<span class="literal">this</span>.<span class="ST4">b</span> = b;
}
<span class="literal">public</span> Complex <span class="ST6">add</span>(<span class="literal">double</span> c, <span class="literal">double</span> d)
{
<span class="literal">return</span> <span class="literal">new</span> Complex(<span class="literal">this</span>.<span class="ST4">a</span> + c, <span class="literal">this</span>.<span class="ST4">b</span> + d);
}
<span class="literal">public</span> Complex <span class="ST6">add</span>(Complex obj)
{
<span class="literal">return</span> <span class="literal">new</span> Complex(<span class="literal">this</span>.<span class="ST4">a</span> + obj.<span class="ST4">a</span>, <span class="literal">this</span>.<span class="ST4">b</span> + obj.<span class="ST4">b</span>);
}
<span class="literal">public</span> Complex <span class="ST6">subtract</span>(<span class="literal">double</span> c, <span class="literal">double</span> d)
{
<span class="literal">return</span> <span class="literal">new</span> Complex(<span class="literal">this</span>.<span class="ST4">a</span> - c, <span class="literal">this</span>.<span class="ST4">b</span> - d);
}
<span class="literal">public</span> Complex <span class="ST6">subtract</span>(Complex obj)
{
<span class="literal">return</span> <span class="literal">new</span> Complex(<span class="literal">this</span>.<span class="ST4">a</span> - obj.<span class="ST4">a</span>, <span class="literal">this</span>.<span class="ST4">b</span> - obj.<span class="ST4">b</span>);
}
<span class="literal">public</span> Complex <span class="ST6">multiply</span>(<span class="literal">double</span> c, <span class="literal">double</span> d)
{
<span class="literal">double</span> r = <span class="literal">this</span>.<span class="ST4">a</span> * c - <span class="literal">this</span>.<span class="ST4">b</span> * d;
<span class="literal">double</span> i = <span class="literal">this</span>.<span class="ST4">a</span> * d + <span class="literal">this</span>.<span class="ST4">b</span> * c;
<span class="literal">return</span> <span class="literal">new</span> Complex(r, i);
}
<span class="literal">public</span> Complex <span class="ST6">multiply</span>(Complex obj) {
<span class="literal">double</span> r = <span class="literal">this</span>.<span class="ST4">a</span> * obj.<span class="ST4">a</span> - <span class="literal">this</span>.<span class="ST4">b</span> * obj.<span class="ST4">b</span>;
<span class="literal">double</span> i = <span class="literal">this</span>.<span class="ST4">a</span> * obj.<span class="ST4">b</span> + <span class="literal">this</span>.<span class="ST4">b</span> * obj.<span class="ST4">a</span>;
<span class="literal">return</span> <span class="literal">new</span> Complex(r, i);
}
<span class="literal">public</span> Complex <span class="ST6">divide</span>(<span class="literal">double</span> c, <span class="literal">double</span> d)
{
<span class="literal">double</span> denominator = (c * c) + (<span class="literal">this</span>.<span class="ST4">b</span> * <span class="literal">this</span>.<span class="ST4">b</span>);
<span class="literal">double</span> aNum = (<span class="literal">this</span>.<span class="ST4">a</span> * c) + (<span class="literal">this</span>.<span class="ST4">b</span> * <span class="literal">this</span>.<span class="ST4">b</span>);
<span class="literal">double</span> iNum = (<span class="literal">this</span>.<span class="ST4">b</span> * c) - (<span class="literal">this</span>.<span class="ST4">a</span> * d);
<span class="literal">double</span> realResult = aNum / denominator;
<span class="literal">double</span> imaginaryResult = iNum / denominator;
<span class="literal">return</span> <span class="literal">new</span> Complex(realResult, imaginaryResult);
}
<span class="literal">public</span> Complex <span class="ST6">divide</span>(Complex obj)
{
<span class="literal">double</span> denominator = (obj.<span class="ST4">a</span> * obj.<span class="ST4">a</span>) + (<span class="literal">this</span>.<span class="ST4">b</span> * <span class="literal">this</span>.<span class="ST4">b</span>);
<span class="literal">double</span> aNum = (<span class="literal">this</span>.<span class="ST4">a</span> * obj.<span class="ST4">a</span>) + (<span class="literal">this</span>.<span class="ST4">b</span> * obj.<span class="ST4">b</span>);
<span class="literal">double</span> iNum = (<span class="literal">this</span>.<span class="ST4">b</span> * obj.<span class="ST4">a</span>) - (<span class="literal">this</span>.<span class="ST4">a</span> * obj.<span class="ST4">b</span>);
<span class="literal">double</span> realResult = aNum / denominator;
<span class="literal">double</span> imaginaryResult = iNum / denominator;
<span class="literal">return</span> <span class="literal">new</span> Complex(realResult, imaginaryResult);
}
@Override
<span class="literal">public</span> String <span class="ST6">toString</span>()
{
<span class="literal">return</span> <span class="ST4">a</span> + <span class="string">&quot;</span><span class="string"> + </span><span class="string">&quot;</span> + <span class="ST4">b</span> + <span class="string">&quot;</span><span class="string">i</span><span class="string">&quot;</span>;
}
<span class="literal">public</span> Complex <span class="ST6">clone</span>() {
Complex obj = <span class="literal">new</span> Complex(<span class="literal">t</span><span class="literal">his</span>.<span class="ST4">a</span>, <span class="literal">t</span><span class="literal">his</span>.<span class="ST4">b</span>);
<span class="literal">return</span> obj;
}
<span class="literal">public</span> <span class="literal">double</span> <span class="ST6">abs</span>() {
<span class="literal">return</span> Math.<span class="ST5">abs</span>(<span class="literal">this</span>.<span class="ST4">a</span> + <span class="literal">this</span>.<span class="ST4">b</span>);
}
<span class="literal">public</span> <span class="literal">double</span> <span class="ST6">getRealPart</span>() {
<span class="literal">return</span> <span class="literal">this</span>.<span class="ST4">a</span>;
}
<span class="literal">public</span> <span class="literal">double</span> <span class="ST6">getImaginaryPart</span>() {
<span class="literal">return</span> <span class="literal">this</span>.<span class="ST4">b</span>;
}
}
</pre></body>
</html>

View File

@ -119,43 +119,7 @@ is divided into following sections:
<property name="module.name" value=""/> <property name="module.name" value=""/>
</target> </target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property,-init-modules-supported" name="-do-init"> <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property,-init-modules-supported" name="-do-init">
<j2seproject1:property name="platform.home" value="platforms.${platform.active}.home"/> <property name="platform.java" value="${java.home}/bin/java"/>
<j2seproject1:property name="platform.bootcp" value="platforms.${platform.active}.bootclasspath"/>
<j2seproject1:property name="platform.compiler" value="platforms.${platform.active}.compile"/>
<j2seproject1:property name="platform.javac.tmp" value="platforms.${platform.active}.javac"/>
<condition property="platform.javac" value="${platform.home}/bin/javac">
<equals arg1="${platform.javac.tmp}" arg2="$${platforms.${platform.active}.javac}"/>
</condition>
<property name="platform.javac" value="${platform.javac.tmp}"/>
<j2seproject1:property name="platform.java.tmp" value="platforms.${platform.active}.java"/>
<condition property="platform.java" value="${platform.home}/bin/java">
<equals arg1="${platform.java.tmp}" arg2="$${platforms.${platform.active}.java}"/>
</condition>
<property name="platform.java" value="${platform.java.tmp}"/>
<j2seproject1:property name="platform.javadoc.tmp" value="platforms.${platform.active}.javadoc"/>
<condition property="platform.javadoc" value="${platform.home}/bin/javadoc">
<equals arg1="${platform.javadoc.tmp}" arg2="$${platforms.${platform.active}.javadoc}"/>
</condition>
<property name="platform.javadoc" value="${platform.javadoc.tmp}"/>
<condition property="platform.invalid" value="true">
<or>
<contains string="${platform.javac}" substring="$${platforms."/>
<contains string="${platform.java}" substring="$${platforms."/>
<contains string="${platform.javadoc}" substring="$${platforms."/>
</or>
</condition>
<fail unless="platform.home">Must set platform.home</fail>
<fail unless="platform.bootcp">Must set platform.bootcp</fail>
<fail unless="platform.java">Must set platform.java</fail>
<fail unless="platform.javac">Must set platform.javac</fail>
<fail if="platform.invalid">
The J2SE Platform is not correctly set up.
Your active platform is: ${platform.active}, but the corresponding property "platforms.${platform.active}.home" is not found in the project's properties files.
Either open the project in the IDE and setup the Platform with the same name or add it manually.
For example like this:
ant -Duser.properties.file=&lt;path_to_property_file&gt; jar (where you put the property "platforms.${platform.active}.home" in a .properties file)
or ant -Dplatforms.${platform.active}.home=&lt;path_to_JDK_home&gt; jar (where no properties file is used)
</fail>
<available file="${manifest.file}" property="manifest.available"/> <available file="${manifest.file}" property="manifest.available"/>
<condition property="splashscreen.available"> <condition property="splashscreen.available">
<and> <and>
@ -278,6 +242,20 @@ is divided into following sections:
<condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}"> <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
<isset property="profile.available"/> <isset property="profile.available"/>
</condition> </condition>
<condition else="false" property="jdkBug6558476">
<and>
<matches pattern="1\.[56]" string="${java.specification.version}"/>
<not>
<os family="unix"/>
</not>
</and>
</condition>
<condition else="false" property="javac.fork">
<or>
<istrue value="${jdkBug6558476}"/>
<istrue value="${javac.external.vm}"/>
</or>
</condition>
<property name="jar.index" value="false"/> <property name="jar.index" value="false"/>
<property name="jar.index.metainf" value="${jar.index}"/> <property name="jar.index.metainf" value="${jar.index}"/>
<property name="copylibs.rebase" value="true"/> <property name="copylibs.rebase" value="true"/>
@ -365,7 +343,7 @@ is divided into following sections:
</path> </path>
</resourcecount> </resourcecount>
</condition> </condition>
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}"> <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
<src> <src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false"> <dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/> <include name="*"/>
@ -416,7 +394,7 @@ is divided into following sections:
<property location="${build.dir}/empty" name="empty.dir"/> <property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/> <mkdir dir="${empty.dir}"/>
<mkdir dir="@{apgeneratedsrcdir}"/> <mkdir dir="@{apgeneratedsrcdir}"/>
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}"> <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
<src> <src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false"> <dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/> <include name="*"/>
@ -458,7 +436,7 @@ is divided into following sections:
<sequential> <sequential>
<property location="${build.dir}/empty" name="empty.dir"/> <property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/> <mkdir dir="${empty.dir}"/>
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}"> <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
<src> <src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false"> <dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/> <include name="*"/>
@ -537,7 +515,7 @@ is divided into following sections:
<element name="customizePrototype" optional="true"/> <element name="customizePrototype" optional="true"/>
<sequential> <sequential>
<property name="junit.forkmode" value="perTest"/> <property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}" showoutput="true" tempdir="${build.dir}"> <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<syspropertyset> <syspropertyset>
<propertyref prefix="test-sys-prop."/> <propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/> <mapper from="test-sys-prop.*" to="*" type="glob"/>
@ -565,7 +543,7 @@ is divided into following sections:
<element name="customizePrototype" optional="true"/> <element name="customizePrototype" optional="true"/>
<sequential> <sequential>
<property name="junit.forkmode" value="perTest"/> <property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" jvm="${platform.java}" showoutput="true" tempdir="${build.dir}"> <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<syspropertyset> <syspropertyset>
<propertyref prefix="test-sys-prop."/> <propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/> <mapper from="test-sys-prop.*" to="*" type="glob"/>
@ -641,7 +619,7 @@ is divided into following sections:
</fileset> </fileset>
</union> </union>
<taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/> <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
<testng classfilesetref="test.set" failureProperty="tests.failed" jvm="${platform.java}" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="MP3_CalebFontenot" testname="TestNG tests" workingDir="${work.dir}"> <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="MP3_CalebFontenot" testname="TestNG tests" workingDir="${work.dir}">
<xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/> <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
<propertyset> <propertyset>
<propertyref prefix="test-sys-prop."/> <propertyref prefix="test-sys-prop."/>
@ -872,9 +850,6 @@ is divided into following sections:
<classpath> <classpath>
<path path="@{classpath}"/> <path path="@{classpath}"/>
</classpath> </classpath>
<bootclasspath>
<path path="${platform.bootcp}"/>
</bootclasspath>
</nbjpdastart> </nbjpdastart>
</sequential> </sequential>
</macrodef> </macrodef>
@ -924,7 +899,7 @@ is divided into following sections:
<attribute default="jvm" name="jvm"/> <attribute default="jvm" name="jvm"/>
<element name="customize" optional="true"/> <element name="customize" optional="true"/>
<sequential> <sequential>
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" jvm="${platform.java}" module="@{modulename}"> <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" module="@{modulename}">
<classpath> <classpath>
<path path="@{classpath}"/> <path path="@{classpath}"/>
</classpath> </classpath>
@ -958,7 +933,7 @@ is divided into following sections:
<attribute default="jvm" name="jvm"/> <attribute default="jvm" name="jvm"/>
<element name="customize" optional="true"/> <element name="customize" optional="true"/>
<sequential> <sequential>
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" jvm="${platform.java}"> <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
<classpath> <classpath>
<path path="@{classpath}"/> <path path="@{classpath}"/>
</classpath> </classpath>
@ -990,7 +965,7 @@ is divided into following sections:
<attribute default="jvm" name="jvm"/> <attribute default="jvm" name="jvm"/>
<element name="customize" optional="true"/> <element name="customize" optional="true"/>
<sequential> <sequential>
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" jvm="${platform.java}"> <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/> <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/> <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/> <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
@ -1224,7 +1199,7 @@ is divided into following sections:
<j2seproject3:copylibs manifest="${tmp.manifest.file}"/> <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
<echo level="info">To run this application from the command line without Ant, try:</echo> <echo level="info">To run this application from the command line without Ant, try:</echo>
<property location="${dist.jar}" name="dist.jar.resolved"/> <property location="${dist.jar}" name="dist.jar.resolved"/>
<echo level="info">${platform.java} -jar "${dist.jar.resolved}"</echo> <echo level="info">java -jar "${dist.jar.resolved}"</echo>
</target> </target>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.archive" name="-do-jar-jar" unless="do.mkdist"> <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
<j2seproject1:jar manifest="${tmp.manifest.file}"/> <j2seproject1:jar manifest="${tmp.manifest.file}"/>
@ -1326,8 +1301,8 @@ is divided into following sections:
<isset property="main.class.available"/> <isset property="main.class.available"/>
</and> </and>
</condition> </condition>
<property name="platform.jlink" value="${platform.home}/bin/jlink"/> <property name="platform.jlink" value="${jdk.home}/bin/jlink"/>
<property name="jlink.systemmodules.internal" value="${platform.home}/jmods"/> <property name="jlink.systemmodules.internal" value="${jdk.home}/jmods"/>
<exec executable="${platform.jlink}"> <exec executable="${platform.jlink}">
<arg value="--module-path"/> <arg value="--module-path"/>
<arg path="${jlink.systemmodules.internal}:${run.modulepath}:${dist.jar}"/> <arg path="${jlink.systemmodules.internal}:${run.modulepath}:${dist.jar}"/>
@ -1520,19 +1495,16 @@ is divided into following sections:
</not> </not>
</and> </and>
</condition> </condition>
<exec executable="${platform.java}" failonerror="false" outputproperty="platform.version.output">
<arg value="-version"/>
</exec>
<condition else="" property="bug5101868workaround" value="*.java"> <condition else="" property="bug5101868workaround" value="*.java">
<matches multiline="true" pattern="1\.[56](\..*)?" string="${platform.version.output}"/> <matches pattern="1\.[56](\..*)?" string="${java.version}"/>
</condition> </condition>
<condition else="" property="javadoc.html5.cmd.line.arg" value="-html5"> <condition else="" property="javadoc.html5.cmd.line.arg" value="-html5">
<and> <and>
<isset property="javadoc.html5"/> <isset property="javadoc.html5"/>
<available file="${platform.home}${file.separator}lib${file.separator}jrt-fs.jar"/> <available file="${jdk.home}${file.separator}lib${file.separator}jrt-fs.jar"/>
</and> </and>
</condition> </condition>
<javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" executable="${platform.javadoc}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> <javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
<classpath> <classpath>
<path path="${javac.classpath}"/> <path path="${javac.classpath}"/>
</classpath> </classpath>

View File

@ -1,8 +1,8 @@
build.xml.data.CRC32=fa6a89f2 build.xml.data.CRC32=af984b5c
build.xml.script.CRC32=3d30e549 build.xml.script.CRC32=3d30e549
build.xml.stylesheet.CRC32=f85dc8f2@1.105.0.48 build.xml.stylesheet.CRC32=f85dc8f2@1.105.0.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=fa6a89f2 nbproject/build-impl.xml.data.CRC32=af984b5c
nbproject/build-impl.xml.script.CRC32=12cf189c nbproject/build-impl.xml.script.CRC32=19fda9dc
nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.105.0.48 nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.105.0.48

View File

@ -36,7 +36,9 @@ dist.jlink.output=${dist.jlink.dir}/MP3_CalebFontenot
endorsed.classpath= endorsed.classpath=
excludes= excludes=
includes=** includes=**
jar.archive.disabled=${jnlp.enabled}
jar.compress=false jar.compress=false
jar.index=${jnlp.enabled}
javac.classpath= javac.classpath=
# Space-separated list of extra javac options # Space-separated list of extra javac options
javac.compilerargs= javac.compilerargs=
@ -73,11 +75,28 @@ jlink.additionalmodules=
jlink.additionalparam= jlink.additionalparam=
jlink.launcher=true jlink.launcher=true
jlink.launcher.name=MP3_CalebFontenot jlink.launcher.name=MP3_CalebFontenot
jnlp.codebase.type=no.codebase
jnlp.descriptor=application
jnlp.enabled=false
jnlp.mixed.code=default
jnlp.offline-allowed=false
jnlp.signed=false
jnlp.signing=
jnlp.signing.alias=
jnlp.signing.keystore=
main.class=mp3_calebfontenot.MP3_CalebFontenot main.class=mp3_calebfontenot.MP3_CalebFontenot
# Optional override of default Application-Library-Allowable-Codebase attribute identifying the locations where your signed RIA is expected to be found.
manifest.custom.application.library.allowable.codebase=
# Optional override of default Caller-Allowable-Codebase attribute identifying the domains from which JavaScript code can make calls to your RIA without security prompts.
manifest.custom.caller.allowable.codebase=
# Optional override of default Codebase manifest attribute, use to prevent RIAs from being repurposed
manifest.custom.codebase=
# Optional override of default Permissions manifest attribute (supported values: sandbox, all-permissions)
manifest.custom.permissions=
manifest.file=manifest.mf manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false mkdist.disabled=false
platform.active=JDK_17 platform.active=default_platform
run.classpath=\ run.classpath=\
${javac.classpath}:\ ${javac.classpath}:\
${build.classes.dir} ${build.classes.dir}

View File

@ -4,7 +4,6 @@
<configuration> <configuration>
<data xmlns="http://www.netbeans.org/ns/j2se-project/3"> <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
<name>MP3_CalebFontenot</name> <name>MP3_CalebFontenot</name>
<explicit-platform explicit-source-supported="true"/>
<source-roots> <source-roots>
<root id="src.dir"/> <root id="src.dir"/>
</source-roots> </source-roots>

View File

@ -101,14 +101,21 @@ class Complex {
public Complex divide(double c, double d) public Complex divide(double c, double d)
{ {
return new Complex(this.a / c, this.a - d); double denominator = (c * c) + (this.b * this.b);
double aNum = (this.a * c) + (this.b * this.b);
double iNum = (this.b * c) - (this.a * d);
double realResult = aNum / denominator;
double imaginaryResult = iNum / denominator;
return new Complex(realResult, imaginaryResult);
} }
public Complex divide(Complex obj) public Complex divide(Complex obj)
{ {
double denominator = this.a * this.a + this.b * this.b; double denominator = (obj.a * obj.a) + (this.b * this.b);
double r = (this.a * obj.b + this.a * obj.b) / denominator; double aNum = (this.a * obj.a) + (this.b * obj.b);
double i = (this.b * obj.b - this.a * obj.b) / denominator; double iNum = (this.b * obj.a) - (this.a * obj.b);
return new Complex(r, i); double realResult = aNum / denominator;
double imaginaryResult = iNum / denominator;
return new Complex(realResult, imaginaryResult);
} }

Binary file not shown.