Forum: Python Apr 8th, 2008 |
| Replies: 70 Views: 7,339 Samething for both OS in java :D
class removeJava {
public static void main (String args[]) {
String command = "";
String osName = System.getProperty("os.name").toLowerCase();... |
Forum: Python Apr 8th, 2008 |
| Replies: 7 Views: 843 Couple of quick pointers, put your code inside code tags
code goes here
also tell us what the problem is, see we now know you are having a little problem, But we don't know what that little... |
Forum: Python Apr 8th, 2008 |
| Replies: 70 Views: 7,339 There is no 64bit integer type in QBASIC :~(
but double is a 64bit floating point
DIM a AS DOUBLE
a = 111111111
PRINT a * a |
Forum: Python Apr 7th, 2008 |
| Replies: 70 Views: 7,339 You need JRE. Thats one package. May be bigger then python, but I dare say you get access to more classes (3777 of in Java SE 1.6 ) then you do with the default python install.
So I would be... |
Forum: Python Apr 6th, 2008 |
| Replies: 70 Views: 7,339 Java is not only a programming language and a VM its also a well documented set of libarys.
Anyhow unless I am a complete retard, I can be pritty certain that any Java program I write using the... |
Forum: Python Apr 4th, 2008 |
| Replies: 70 Views: 7,339 I don't like the fact that the Visual Studio forum designer produces code for the form. I much perfer libglades way of doing it where you import an XML file created in glade. It makes certain you... |
Forum: Python Apr 3rd, 2008 |
| Replies: 70 Views: 7,339 I have found Mono to be ok, as long as you are not set on useing the say Forms api or somthing like that, GTK# etc. seem to work quite well.
Some pritty cool little projets have come out for linux... |
Forum: Python Apr 3rd, 2008 |
| Replies: 70 Views: 7,339 |
Forum: Python Apr 3rd, 2008 |
| Replies: 3 Views: 566 I am guessing that you are first converting from base x to base 10 the base 10 to base y.
If that is the case I would make two functions, one to convert from base x to base 10 then another to... |
Forum: Python Apr 2nd, 2008 |
| Replies: 70 Views: 7,339 Java was released under the GPL, Java can be compiled into bytecode and run onto of a virtual machine, But since python is interprated, it cannot.
I have a book called 'C++ in 5 minutes'. I... |
Forum: Python Apr 2nd, 2008 |
| Replies: 70 Views: 7,339 Yea you can, C#, less typing } is quicker to write then End Sub.
VB.net only single line comments.
VB.net more typing
Dim name as String
compared to
String name;
and all the same... |
Forum: Python Apr 1st, 2008 |
| Replies: 70 Views: 7,339 but the difference is that in python print is a keyword while in C++ its a function ( overloaded operator to be percise, but a function ).
If you want to call a function in python you still have... |
Forum: Python Apr 1st, 2008 |
| Replies: 70 Views: 7,339 Wonder if
cout<< __int64 (11111111) * __int64 (11111111);
would work.
Anyhow, This brings me, not very neatly back to my initial statment, that I like the syntax in C++, C# and C better.
... |
Forum: Python Mar 31st, 2008 |
| Replies: 70 Views: 7,339 Well as long as you cast you can do
cout<< long long(11111111) * long long(11111111);
same goes for java, C and C#. But I will admit that is alittle more complicated. |
Forum: Python Mar 31st, 2008 |
| Replies: 70 Views: 7,339 The C++ was written ontop of .NET :. you would have to use the Microsoft compiler. Since it has to be compiled to run ontop of a jitter.
The C one should compile fine with GCC and with any luck... |
Forum: Python Mar 31st, 2008 |
| Replies: 70 Views: 7,339 sorry and in C
#include <stdio.h>
int main(){
long long a = 111111111;
printf("%lld", a * a );
return 0;
} |
Forum: Python Mar 31st, 2008 |
| Replies: 70 Views: 7,339 That scares me a little, How does one implement a rotating counter in python ?
class Program
{
public static void Main(string[] args)
{
ulong a = 111111111; // Thats 9 1's... |
Forum: Python Mar 30th, 2008 |
| Replies: 70 Views: 7,339 In that case Java.
Only reason I have never tryed Python is because of the syntax. I feel that is far removed from everything else. Switching from C++ to C to Java to C# is simple, The syntax in... |
Forum: Python Mar 19th, 2008 |
| Replies: 8 Views: 754 I think you will have to have a look at the surrounding tages for each link. If you have a look at google you will notice that all sponsored links are in a sepirate div tags. The best way to tackle... |
Forum: Python Mar 19th, 2008 |
| Replies: 8 Views: 754 Yet again, Not a python coder, Just crusing around on the python fourms.
But if I was going to attempt to do somthing as such I would be looking at how to do a HTTP GET request good looking... |
Forum: Python Mar 19th, 2008 |
| Replies: 70 Views: 7,339 I also don't see people jumping ship to support Java. I feel community development will be quite strong with python and Java will have alot more commertial development ( organizations that wish to... |
Forum: Python Mar 19th, 2008 |
| Replies: 70 Views: 7,339 Python is a language that I personally have had no real experiance with but I understand is very popular in the open source world. Python and C appear to be the current choice for majority of open... |