Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
quadratic.xfdl
Upload User: shuxianled
Upload Date: 2007-01-18
Package Size: 6404k
Code Size: 1k
Category:
xml-soap-webservice
Development Platform:
Others
- <?xml version="1.0"?>
- <XFDL version="4.1.0">
- <page sid="QuadraticEquationSolver">
- <label>Quadratic Equation Form</label>
- <label sid="LABEL1">
- <value>Solve ax^2 + bx + c = 0</value>
- <fontinfo content="array">
- <ae>Times</ae> <ae>10</ae> <ae>italic</ae>
- </fontinfo>
- </label>
- <field sid="a">
- <label>Enter a: (coefficient of x^2)</label>
- <value>1</value>
- </field>
- <field sid="b">
- <label>Enter b: (coefficient of x^1)</label>
- <value>0</value>
- </field>
- <field sid="c">
- <label>Enter c: (coefficient of x^0)</label>
- <value>-1</value>
- </field>
- <field sid="x1">
- <label>Root 1</label>
- <editstate>readonly</editstate>
- <value content="compute">
- <compute>
- (-b.value
- + sqrt(b.value*b.value - "4"*a.value*c.value))
- /"2"*a.value
- </compute>
- </value>
- </field>
- <field sid="x2">
- <label>Root 2</label>
- <editstate>readonly</editstate>
- <value content="compute">
- <compute>
- (-b.value
- - sqrt(b.value*b.value - "4"*a.value*c.value))
- /"2"*a.value
- </compute>
- </value>
- </field>
- </page>
- </XFDL>