Forum: C++
Feb 8th, 2006, 5:44 PM
|
|
Replies: 18
Views: 383
|
Forum: C++
Feb 8th, 2006, 5:00 PM
|
|
Replies: 18
Views: 383
I think you're reading me wrong.
Ok I'll use...
I think you're reading me wrong.
Ok I'll use your code as the example to try to explain a little better.
You put "test newTest;" to create a test struct called "newTest"
I want "newTest" to be...
|
Forum: C++
Feb 8th, 2006, 4:25 PM
|
|
Replies: 18
Views: 383
|
Forum: C++
Feb 8th, 2006, 4:13 PM
|
|
Replies: 18
Views: 383
|
Forum: Visual Basic
Dec 8th, 2004, 8:28 PM
|
|
Replies: 6
Views: 188
|
Forum: Visual Basic
Dec 8th, 2004, 3:41 PM
|
|
Replies: 6
Views: 188
|
Forum: Visual Basic
Dec 7th, 2004, 10:42 PM
|
|
Replies: 6
Views: 188
I have a combobox with "Option1" and...
I have a combobox with "Option1" and "Option2"
When Option1 is clicked, option1 is enabled and option2 is disabled, and when Option 2 is clicked, it is enabled and Options1 is disabled.
The problem...
|
Forum: Python
Nov 20th, 2004, 2:53 PM
|
|
Replies: 7
Views: 453
|
Forum: Python
Nov 20th, 2004, 12:03 PM
|
|
Replies: 7
Views: 453
Yea, I forgot the first line.
dec =...
Yea, I forgot the first line.
dec = raw_input("Number: ")
power = 0
result = 0
while result <= dec:
* *result = 2 ** power
* *power = power + 1
print power
print result
|
Forum: Python
Nov 20th, 2004, 10:40 AM
|
|
Replies: 7
Views: 453
power = 0
result = 0
while result <= dec:
*...
power = 0
result = 0
while result <= dec:
* *result = 2 ** power
* *power = power + 1
print power
print result
When it gets to the while loop, it freezes. Why does it freeze and how can I fix it?
|