Visual J#: Getting Started with 2005 Express Edition Beta

  • Thread starter Thread starter UrbanXrisis
  • Start date Start date
  • Tags Tags
    Visual
AI Thread Summary
The discussion revolves around a user new to Visual J# who is seeking guidance on compiling code after transitioning from BlueJ. The user has installed Visual J# 2005 Express Edition Beta but encounters an issue where the debugger indicates "No source file supplied" when attempting to compile. They share a specific code snippet that successfully compiles in Sun Java but fails in J#. The user requests basic code examples for comparison and hints to resolve their compilation issues. Key points include the need for proper file setup in Visual J# and potential differences in syntax or structure between Java and J#.
UrbanXrisis
Messages
1,192
Reaction score
1
I'm new to using Visual J# and I have not a single clue of how to use it. I've been using BlueJ for compiling Java but I'm tring J# now. I have Visual J# 2005 Express Edition Beta all up and running, now I want to compile something but I don't know where to begin. I tried to compile something but the debugger always tells me that "No source file supplied." Does anyone have some basic code that I can compaire my code with or any hints to help me out in this situation? Thanks
 
Computer science news on Phys.org
For example, I could not
get this code to compile:

class program5 {
public static void main(String args[ ]) {

int result=1,digit=1;

do {
if (digit<7000){
System.out.print("2 to the power of "+digit+" = "+result+"\n");}
result=result*2;
digit++;
}while (result<70000);

}
}

This compiles of course under Sun Java. How do I do the same with J#?
 
In my discussions elsewhere, I've noticed a lot of disagreement regarding AI. A question that comes up is, "Is AI hype?" Unfortunately, when this question is asked, the one asking, as far as I can tell, may mean one of three things which can lead to lots of confusion. I'll list them out now for clarity. 1. Can AI do everything a human can do and how close are we to that? 2. Are corporations and governments using the promise of AI to gain more power for themselves? 3. Are AI and transhumans...
Thread 'ChatGPT Examples, Good and Bad'
I've been experimenting with ChatGPT. Some results are good, some very very bad. I think examples can help expose the properties of this AI. Maybe you can post some of your favorite examples and tell us what they reveal about the properties of this AI. (I had problems with copy/paste of text and formatting, so I'm posting my examples as screen shots. That is a promising start. :smile: But then I provided values V=1, R1=1, R2=2, R3=3 and asked for the value of I. At first, it said...
Back
Top