Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~552 People Reached
About Me

Finished a bachelor's in Cell Biology/Neuroscience, pursuing a B.S. in Computer Science at Rutgers New Brunswick, hoping to earn Masters in Bioinformatics.

Interests
carpentry, biology, economics, biological mapping software development (mainly using python)
PC Specs
Dell Inspiron 1420, Windows Vista 32/Ubuntu 10.10 (partitioned), core 2 duo @ 2.4 GHz, 256 mb dedicated…
Favorite Forums
Favorite Tags
Member Avatar for ilikepaste

So I'm trying to define a counter in a while loop, and print it from the class: [CODE]public class odd { public static void main(String[] args) { System.out.println("Input your number"); int x = IO.readInt(); int odd = 0; int even = 0; while (x != 0) { if (x % …

Member Avatar for ilikepaste
0
226
Member Avatar for ilikepaste

So I'm trying to write a program: Print a number in scientific notation with 3 significant digits (e.g., 0.000838423 = 8.34*10^4). You must define and use a module that rounds a number to a specified number of decimal places. Here is what I've got so far: [CODE]public class Sn { …

Member Avatar for ilikepaste
0
127
Member Avatar for ilikepaste

import urllib.request page = urllib.request.urlopen("http://www.randompickupline.com/") text = page.read().decode("utf8") where = text.find('<p id="pickupline">') start_of_line = where + 18 end_of_line = start_of_line + 150 line = (text[start_of_line:end_of_line]) print (line) This is a basic html import for a text based game I'm writing for fun, and I'm making a dynamic string. However, the …

Member Avatar for ilikepaste
0
199