Forum: Oracle Oct 5th, 2006 |
| Replies: 1 Views: 4,126 i have tried to answer this question like this (show your attempt) and i did it like this because (show your reasons why you think it is the correct approach) and the results that it gave are like... |
Forum: MS SQL Oct 4th, 2006 |
| Replies: 0 Views: 1,543 USING:ORACLE 9i
For each of the following tasks, determine (a) the SQL statement needed to perform the stated task using the traditional approach and (b) the SQL statement needed to perform the... |
Forum: Oracle Sep 23rd, 2006 |
| Replies: 2 Views: 1,805 is this finally right and is there other ways 2 do this?
SELECT *
FROM customers
WHERE state = 'NJ'
/
SELECT *
FROM orders
WHERE shipdate > '01-APR-03'
/ |
Forum: Oracle Sep 23rd, 2006 |
| Replies: 0 Views: 1,366 USING:ORACLE 9i
For each of the following tasks, determine (a) the SQL statement needed to perform the stated task using the traditional approach and (b) the SQL statement needed to perform the... |
Forum: Oracle Sep 21st, 2006 |
| Replies: 2 Views: 1,805 I Tried It Again, And It Still Not Doing It Way |
Forum: Oracle Sep 20th, 2006 |
| Replies: 2 Views: 1,805 FROM: ORACLE 9i
Give the SQL statements that determine the following:
1. Which customers lives in New Jersey?
SELECT * customer
FROM customers
WHERE state = 'NJ'
2.Which orders were... |
Forum: Python Apr 25th, 2006 |
| Replies: 2 Views: 1,093 # sum.py
# tpm
# A program that accepts an indeterminate (any number) of integers entered by
# the user, calculates and their sum, using loop
from math import *
def calc_sum():
n =... |
Forum: Python Apr 24th, 2006 |
| Replies: 2 Views: 1,640 # class.py
# tpm
# A program to calculate the volume and surface area of a sphere from its
# radius given as input.
from math import *
class Sphere: |
Forum: Python Apr 20th, 2006 |
| Replies: 3 Views: 1,450 |
Forum: Python Apr 20th, 2006 |
| Replies: 3 Views: 1,450 THIS WINDCHILL TABLE PROGRAM IS RUNNING, BUT THE NUMBERS IS STILL NOT LINING UP STRAIGHT..WHY, CAN YOU PLEASE HELP ME..THANKS
HERE IS THE PROGRAM BEFORE I RUN IT..
def windchill( vel, temp):... |
Forum: Python Apr 20th, 2006 |
| Replies: 1 Views: 973 THE WINDCHILL TABLE IS RUNNING, BUT THE NUMBER IS NOT LINNING UP STRAIGHT. CAN YOU PLEASE HELP ME, THANKS
def windchill( vel, temp):
wc = 35.74 + .6215*temp - 35.75*(vel**.16) +... |
Forum: Python Apr 19th, 2006 |
| Replies: 0 Views: 1,232 I WRITTEN THIS PROGRAMM IN 2 WAYS(RE-WROTE IT OVER AND OVER), AND ITS STILL NOT RUNNING CORRECTLY. IS THERE OTHER WAYS THAT IS PROGRAM CAN BE WRITTEN. I AM SO FRUSTRATED, PLEASE HELP ME. THANK YOU.
... |
Forum: Python Apr 19th, 2006 |
| Replies: 4 Views: 1,551 I WROTE 2 PROGRAMS FOR WINDCHILL, AND IT STILL NOT RUNNING CORRECTLY. I TRIED EVERYTHING.
:mad: :evil: :cry: :o :sad: :( |
Forum: Python Apr 19th, 2006 |
| Replies: 1 Views: 1,012 def windchill(temp, vel):
wc = 35.74 + .6215*temp - (35.75*vel**.16 + .4275*temp*vel**.16)
return wc
def main():
print (" __ __ __Temp /n")
print (" Speed /n")
print... |
Forum: Python Apr 18th, 2006 |
| Replies: 4 Views: 1,551 is there other to write this program? |
Forum: Python Apr 17th, 2006 |
| Replies: 4 Views: 1,551 # windchill.py
# tpm
# A program that prints a nicely formatted table of windchill values.
from math import *
def windchill(t, v):
c = 35.74 + (0.6215 * t) - (35.75 * v ** .16)... |
Forum: Python Apr 13th, 2006 |
| Replies: 2 Views: 1,275 # tpm.py
# Take two inputs, age and years of citizenship, and returns eligibility for
# senator and representative.
from graphics import *
def main():
win = GraphWin('Eligibility' ,... |
Forum: Python Apr 12th, 2006 |
| Replies: 4 Views: 1,239 thank you...it helped alot |
Forum: Python Apr 11th, 2006 |
| Replies: 4 Views: 1,239 can you show me please i tried using using the if statements |
Forum: Python Apr 9th, 2006 |
| Replies: 4 Views: 1,239 # tpm.py
# A program that accepts the total amount of purchase, calculates the
# appropriate discount, and displays the discount and the purchase after
# discount.
from math import * |
Forum: Python Mar 28th, 2006 |
| Replies: 2 Views: 1,629 # tpm.py Computes the cost per square inch of pizza given cost of the pizza,
# and diameter.
from math import *
def main():
cost_per_square_inch(area_of_pizza())
def area_of_pizza(): |
Forum: Python Mar 7th, 2006 |
| Replies: 2 Views: 2,122 Did I do this right and can you please help me. This program uses a GUI to input a user's first and last name,
and construct and display a UserID. Although the program 'runs',
there are several... |
Forum: Python Mar 2nd, 2006 |
| Replies: 2 Views: 3,620 thank you, that was a big help |
Forum: Python Mar 1st, 2006 |
| Replies: 16 Views: 4,691 yes, i do...where do you know me from?? |
Forum: Python Feb 28th, 2006 |
| Replies: 0 Views: 1,499 import sys
def main():
usage = 'Usage: %s [options] <file name>\n' % sys.argv[0]
options = 'Options:\n'
options = options + ' -c, --chars print the character counts\n'
options... |
Forum: Python Feb 28th, 2006 |
| Replies: 0 Views: 1,443 import sys :o
def main():
usage = 'Usage: %s [options] <file name>\n' % sys.argv[0]
options = 'Options:\n'
options = options + ' -c, --chars print the character counts\n'... |
Forum: Python Feb 28th, 2006 |
| Replies: 2 Views: 3,620 :?:
#The number of lines, and the number of words.
import string
def main():
data = raw_input("Enter the path and name of your ")
infile = file(data, 'r') |
Forum: Python Feb 27th, 2006 |
| Replies: 0 Views: 2,906 Word Count. A Common Utility On Unix/linux Systems Is A Small Program Called "wc." This Program Analyzes A File To Determine The Number Of Lines, Words, And Characters Contained Therein. Write A... |
Forum: Python Feb 26th, 2006 |
| Replies: 8 Views: 6,390 Here is simplified approach, the number of new-line characters '\n' give number of lines, the number of spaces are approximately the number of words, and the number of characters is the length of the... |
Forum: Python Feb 24th, 2006 |
| Replies: 8 Views: 6,390 so how would i set this up with what u told me because im a visual learner
C:\home\COP1000\a\3>python wc.py futval.py test.txt wc.py
22 103 699 futval.py
2 4 22 test.txt
52 ... |
Forum: Python Feb 23rd, 2006 |
| Replies: 8 Views: 6,390 there is spaces between the numbers |
Forum: Python Feb 23rd, 2006 |
| Replies: 16 Views: 4,691 |
Forum: Python Feb 23rd, 2006 |
| Replies: 8 Views: 6,390 Word Count. A Common Utility On Unix/linux Systems Is A Small Program Called "wc." This Program Analyzes A File To Determine The Number Of Lines, Words, And Characters Contained Therein. Write A... |
Forum: Python Feb 23rd, 2006 |
| Replies: 8 Views: 6,390 |
Forum: Python Feb 23rd, 2006 |
| Replies: 16 Views: 4,691 |
Forum: Python Feb 23rd, 2006 |
| Replies: 16 Views: 4,691 |
Forum: Python Feb 23rd, 2006 |
| Replies: 16 Views: 4,691 |
Forum: Python Feb 23rd, 2006 |
| Replies: 16 Views: 4,691 Thanks A Lot For Your Help |