Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Programming Guides, Tutorials, Web Resources, and E-books Compilation

thanks dito sir, plano ko kasi mag self study habang walang pasok .hehe
 
thnx poh dito... anyone can have a suggestion if saan poh ako mgsisimula.. self study na lng poh ako.. nursing poh ung profession q.. tpos gusto q mg aral ng programming.. the problems is don't have budget.. so self study na lng poh.. sana may mgsuggest jan.. thnks in advance.. :clap:
 
mga bro marunong kayu nito? pa help naman gusto ko sanang gumawa ng line at always on the top sya parang ganito yung nasa picture
 

Attachments

  • line.JPG
    line.JPG
    100.7 KB · Views: 10
  • untitled.JPG
    untitled.JPG
    16 KB · Views: 7
Sir recommended ba yung tutorial sa java official site? Pansin ko kasi gumagamit dun ng mga codes o topic na hindi pa natatackle at that moment ang masama pa nun wala pang explanation.
 
salamat TS pwede ba magrequest ng ebook na "absolute java by savitch walter" ?

:thumbsup:
 
Thanks TS... Subscribe na ako dito sa page mo.

pwede magrequest tutuorial for Yii framework?

thanks ulit
 
ts, maraming salamat po sa pagshare. pa subscribe po ako. thanks!
 
hello mga kapatid kong malulupet :help:

lately nag start ako mag aral ng Programming gamit ang language na C++ nasa part na ako ng functions..gusto ko sana ipakita itong code na ito dahil sumakit ang ulo ko kakaintindi,pwede ba ninyo iexplain sa akin ang folow ng code na ito? about pala ito sa TOWER OF HANOI. about Recursive Functions.

#include <cstdlib>
#include <iostream>
using namespace std;
void move_rings(int n, int src, int dest, int other);
int main()
{
int n = 3; / Stack is 3 rings high
move_rings(n, 1, 3, 2); // Move stack 1 to stack 3
system("PAUSE");
cont. return 0;
}
void move_rings(int n, int src, int dest, int other) {
if (n == 1) {
cout << "Move from " << src << " to " << dest
<< endl;
} else {
move_rings(n - 1, src, other, dest);
cout << "Move from " << src << " to " << dest
<< endl;
move_rings(n - 1, other, dest, src);
}
}

eto ang output niya:

Move from 1 to 3
Move from 1 to 2
Move from 3 to 2
Move from 1 to 3
Move from 2 to 1
Move from 2 to 3
Move from 1 to 3

explain niyo naman sa akin yung flow ng program,kung paano lumabas itong result.salamat :salute:
 
salamat po dito laking tulong nito sa akin
 
Many many thanks pla dito bro..:)mawawalan na kxe ng internet kaya download time na,,haha
 
2vdfgbo.jpg



Mga sir pa request nmn po ng full installer ni2 nid lng po.
 
mga sir san po kaya pwede maka DL ng flash developer???
 
pwede po bang mag pa gawa ng program para sa online games??? Ung sa ragnarok ung automatic para sa pangawa ng fuds?? Meon kasi nun dati ung hoykey f1-f9 macro.. E na deteect na ng server kea bawal na.. Cno po makakatulong sakin plz help...
 
Back
Top Bottom