You are viewing our Forum Archives. To view or take place in current topics click here.
Was this helpful to you?
Yes
0.00% (0 votes)
0.00% (0 votes)
My question was not answered
0.00% (0 votes)
0.00% (0 votes)
No
100.00% (1 vote)
100.00% (1 vote)
Total Votes: 1
Programming Dojo | Need help? Just ask!
Posted:
Programming Dojo | Need help? Just ask!Posted:
Status: Offline
Joined: Dec 09, 201112Year Member
Posts: 1,939
Reputation Power: 83
Welcome to the Dojo
Need help with any number of programming issues? Well you came to the right place. Feel free to leave a question down below and i will get back to you at my soonest convenience, either through a reply post, or a personal message.
My personal experience:
How to leave a question:
Well thats simple, just use your best explantion of what you need help with and try to be as specific as possible. I should be able to get back to you within 24 hours, or at my soonest convenience
- 3+ Years of HTML, CSS, and Java languages ranging from HTML4 to HTML5
Visual basics certification
Adobe Dream Weaver certification
and much more!
How to leave a question:
Well thats simple, just use your best explantion of what you need help with and try to be as specific as possible. I should be able to get back to you within 24 hours, or at my soonest convenience
Last edited by Lic ; edited 2 times in total
#2. Posted:
Status: Offline
Joined: Dec 23, 201013Year Member
Posts: 2,446
Reputation Power: 80
I'll also comment around here answering questions that I can, as I also have a bit of experience with HTML4-5, Dreamweaver, etc.
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Dec 09, 201112Year Member
Posts: 1,939
Reputation Power: 83
Even wrote I'll also comment around here answering questions that I can, as I also have a bit of experience with HTML4-5, Dreamweaver, etc.
Good to see another person helping out the programming community.
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Nov 17, 201311Year Member
Posts: 121
Reputation Power: 4
If I have any questions for my AP Computer Science class ill make sure to come here!
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Dec 09, 201112Year Member
Posts: 1,939
Reputation Power: 83
Brixton wrote If I have any questions for my AP Computer Science class ill make sure to come here!Looking forward to it man
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Apr 21, 201212Year Member
Posts: 2,401
Reputation Power: 166
Status: Offline
Joined: Apr 21, 201212Year Member
Posts: 2,401
Reputation Power: 166
That's kind of the point of this entire section.
- 3useful
- 1not useful
#7. Posted:
Status: Offline
Joined: Nov 21, 201112Year Member
Posts: 4
Reputation Power: 0
Just going to let you see my code, this is a program that converts bases. Don't think you need to see my tester class. Any help would be much appreciated!
public void lowertoten(){
int temp;
a = input.length();
troy = new char[input.length()];
for (int i = 0; i < a; i++){
troy[i] = input.charAt(i);
}
int j = troy.length-1;
viger = new char[troy.length];
for(int i = 0; i < troy.length; i++){
viger[j] = troy[i];
if(viger[j]=='0'){
x = 0;
}
( this is repeated for numbers 0-9 then)
temp = (int)Math.pow(base, i)*x;
y += temp;
j--;
public void lowertoten(){
int temp;
a = input.length();
troy = new char[input.length()];
for (int i = 0; i < a; i++){
troy[i] = input.charAt(i);
}
int j = troy.length-1;
viger = new char[troy.length];
for(int i = 0; i < troy.length; i++){
viger[j] = troy[i];
if(viger[j]=='0'){
x = 0;
}
( this is repeated for numbers 0-9 then)
temp = (int)Math.pow(base, i)*x;
y += temp;
j--;
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Dec 09, 201112Year Member
Posts: 1,939
Reputation Power: 83
ImLoyal wrote Just going to let you see my code, this is a program that converts bases. Don't think you need to see my tester class. Any help would be much appreciated!
public void lowertoten(){
int temp;
a = input.length();
troy = new char[input.length()];
for (int i = 0; i < a; i++){
troy[i] = input.charAt(i);
}
int j = troy.length-1;
viger = new char[troy.length];
for(int i = 0; i < troy.length; i++){
viger[j] = troy[i];
if(viger[j]=='0'){
x = 0;
}
( this is repeated for numbers 0-9 then)
temp = (int)Math.pow(base, i)*x;
y += temp;
j--;
looks clean so far, just make sure you compare the numbers to ensure they match, ( the one through 9 ) and i suggest using
int temp;
a = input.length();
troy = new char[input.length()];
for (int i = 0; i < a; i++){
troy[i] = input.charAt(i);
}
int j = troy.length-1;
viger = new char[troy.length];
for(int i = 0; i < troy.length; i++){
viger[j] = troy[i];
if(viger[j]=='0'){
x = 0;
}
( this is repeated for numbers 0-9 then)
temp = (int)Math.pow(base, i)*x;
y += temp;
j--;
when posting code
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Nov 20, 201311Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Nov 20, 201311Year Member
Posts: 20
Reputation Power: 0
If you know PHP, you should really state that, Lots of people need help with it, Nice thread!
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Jan 31, 201113Year Member
Posts: 950
Reputation Power: 37
Dojo wroteWelcome to the Dojo
Need help with any number of programming issues? Well you came to the right place. Feel free to leave a question down below and i will get back to you at my soonest convenience, either through a reply post, or a personal message.
My personal experience:
3+ Years of HTML, CSS, and Java languages ranging from HTML4 to HTML5
Visual basics certification
Adobe Dream Weaver certification
and much more!
How to leave a question:
Well thats simple, just use your best explantion of what you need help with and try to be as specific as possible. I should be able to get back to you within 24 hours, or at my soonest convenience
Why did you block me?? I need your help with coding a website. I would like to PM you.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.