I have learned java in the BlueJ environemnt.
How can i apply this knowledge and these programs in html ?
User Profile
Collapse
-
Application of Java in BlueJ
-
it workd ...thnx -
-
kk. you knw by any method i can convert string to char ???
like i entered + as string datatype but want to convert it to + of char datatypeLeave a comment:
-
-
Aim of my program is to arrange entered words in dictionary order....hw would i do that !!Leave a comment:
-
-
How to make my programs as executable applications ?
I use BlueJ 3.0.1.
Say i have written a program like to determine a prime number.
Now i want an icon on my desktop which executes the program directly by asking me the number and showing the result without opening BlueJ. I want to create executable file of my program.
But how ??? -
-
Why doesn't character datatype take up more than one character ?
Hello.
I use BlueJ 3.0.1
I am writing a program to dictionarize words(arrange words in dictionary order).
But the 'char' type isn't working properly.
Code:char ch1 = 'qwerty' ;//shows error char ch2 = 'qwedrt'; if(ch1>ch2) { System.out.println(ch2); System.out.println(ch1); } else { System.out.println(ch1); System.out.println(ch2);
-
i hate creatin objects.....hwe ver i wrked out solution 4 the program...if i directly declare
Code:a = Divider(a,i);
anyways thnx 4 help.Leave a comment:
-
but if i put a "final" it will become a constant for the rest of the execution but i want to change it as the loop procedes :( ...any other cure ?Leave a comment:
-
-
Thnx worked lyk magic ...bt now i hv a new error ! plz debug.
Code:public class Prime_Factorizer { public static void main(int a) { final int l = a ; System.out.println("Prime Factors of " + a + " are :"); for(int b = 2 ; b < l ; b++) { if(a==1) {break;} int i = Prime_Determine(b); if(i!=0) int q = Divider(a,i); //it says ".class"
Leave a comment:
-
Please state the error in following program.
Hey ! I am a Semi-pro/Amateur kind of Java Programmer. A student. I use BlueJ to write Java Programs. I was writing a Java Program to display the prime factors of a number entered. However the compiler was constantly showing error of missing return statement. Why ? and can u tell me how to cure it ?
Code:public class Prime_Factorizer { public static void main(int a) { final int l = a ; System.out.println("Prime
No activity results to display
Show More
Leave a comment: