Java Netbeans

francish

Junior Member
Joined
May 13, 2006
Messages
76
Reaction score
0
Hi,

Sorry. I am seeking help from anyone here who can write Java code using Netbeans. This is for part of my course project. I just need the minimal.
I am totally no good in programming of any sort.

Please PM me if you have time to spare. I can pay fee for your help.

Thanks.
 

davidktw

Arch-Supremacy Member
Joined
Apr 15, 2010
Messages
13,550
Reaction score
1,302
Hi,

Sorry. I am seeking help from anyone here who can write Java code using Netbeans. This is for part of my course project. I just need the minimal.
I am totally no good in programming of any sort.

Please PM me if you have time to spare. I can pay fee for your help.

Thanks.

Are you requesting to pay for a programmer to finish your project for you?
 

KnightNiwrem

Senior Member
Joined
Jun 1, 2014
Messages
1,057
Reaction score
0
Hi,

Sorry. I am seeking help from anyone here who can write Java code using Netbeans. This is for part of my course project. I just need the minimal.
I am totally no good in programming of any sort.

Please PM me if you have time to spare. I can pay fee for your help.

Thanks.

Here's a software I wrote that may print out the java program you need (with some probability) for free!

Code:
Random r = new Random();
int programLength = r.nextInt(Integer.MAX_VALUE);
StringBuilder yourProgram = new StringBuilder();

int nextValue = 0;

for (int i = 0; i < programLength; i++) {

    nextValue = r.nextInt(256);
    yourProgram.append((char) nextValue);

}

System.out.println(yourProgram.toString());
 

ykgoh

Master Member
Joined
Jan 1, 2000
Messages
2,782
Reaction score
0
TS, are you IT/computing major? Or a student who unfortunately jumped into a general elective computing module and is regretting about doing programming?

If you need help, at least post your project requirements here so that whoever interested can respond to you.

Well, I have met my fair share of people enrolling in IT or computer science courses but can't do programming for nuts.
 
Important Forum Advisory Note
This forum is moderated by volunteer moderators who will react only to members' feedback on posts. Moderators are not employees or representatives of HWZ Forums. Forum members and moderators are responsible for their own posts. Please refer to our Community Guidelines and Standards and Terms and Conditions for more information.
Top