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!

All about programming (Specially c, c++, VB, Java)

may tanung ako sir. Java PL po gamit ko .. alam mo po yung paano mag connect ng mga Apps kagaya ng Paint built-in lng sa OS gamit yung JMenuBar ?






Paki sagot sir!! Thanks po :approve:
 
Sino po pwedeng maka help sakin kasi po may program kami sa finals using VB 6.0 and ODBC. Microsoft Access yung gagamiting database :) Thankyou in Advance mga idol.
 

Attachments

  • 997062_916518775044975_1164231467911201732_n.jpg
    997062_916518775044975_1164231467911201732_n.jpg
    6.2 KB · Views: 3
Kuya! Pa help naman po. May alam ka po bang game na gawa sa c++? Tapos po may codes. Need po kase namen e. Mas okay kung gumagana sa dev c++ :) thank you in advance
 
[/SIZE
]magandang araw mga masters bka naman po pde nyung ipaliwanag sakin sa tagalog kung ano po ang gamit mg return s fuction o panu po ito gamit sobra po kasi akong nguguluhan marami n po akong nbsa pero nd ko parin po ma getz

MARAMING SALAMAT PO


Ibinabalik lang nya yung value or ginagamit pang-stop ng isang function.

Example ng return:

if (x == 1) {
System.out.print("Wala");
return;
}
else {
System.out.print("Meron");
}

Dun sa example, wala syang binabalik na value pero nagamit sya pampigil na pumunta sa else. May cases kase na tumutuloy sya sa baba kaya pwede ka gumamit ng return :) (Experience lang po.)

Example naman ng may binalik na value

function mF (x, y) {
return x+y;
}

Dito naman may binabalik syang value, kunware yung x=3 at yung y=4, since ang ginamit ko ay "return x+y" ibabalik nya yung value nung pinag-add na x at y. So 3+4 = 7..

Sana naintindihan nyo :)
 
Need help dev c++ paano ko icocode to tru looping :( Sorry beginner lang po :(

6
2
9
4
12
6

Thanks po sa makakasagot wala pa ako alam masyado sa looping :ashamed:
 
Need help dev c++ paano ko icocode to tru looping :( Sorry beginner lang po :(

6
2
9
4
12
6

Thanks po sa makakasagot wala pa ako alam masyado sa looping :ashamed:

San galing yung mga numbers??? Ano input?
 
Need help dev c++ paano ko icocode to tru looping :( Sorry beginner lang po :(

6
2
9
4
12
6

Thanks po sa makakasagot wala pa ako alam masyado sa looping :ashamed:

loop lang from 6 to 12 step by 3
first loop, less 4 in 6 = 2, then increment 4 to 5,
2nd loop, less 5 in 9 = 4, then increment 5 to 6,
last loop, less 6 in 12 = 6.
 
Hello po, paano po gumawa ng installer nung VB.net project na ginawa po namin ?
Gumamit po pala kami ng SAP Crystal Report at MetroButton.dll at MS SQL po yung db na ginamit. Salamat po.
Nitry na kasi namin yung Advance Installer kaso ayaw eh.
 
Sir Pa help naman dito sa ATM project ko .... ang gusto ko po manyare ay
1.)itatanong niya muna un accountPIN at password tapos ma sasave siya don sa isang folder using ofstream.
2.)Tapos po after niya mag deposit or mag withdraw itatanong niya kung do you want to start a new transaction?Y or N?tas ullit po ulet pero andun parin po un value kung nag deposit siya.
yun nalang po problema ko sana po makatulong kayo .
C++ programming po. Salamat in Advance :clap::clap::clap::clap::clap::clap::clap::clap::clap:
#include <iostream>
#include <string>
using namespace std;
void userinput();
void displaybalance(int x);
int depositbalance(int a, int b);
int withdrawSum(int x, int y);


int main()
{

userinput();

}


void userinput()
{


int balance;
int deposit, withdraw, choice;
balance = 0;
int choice1;


cout << "Welcome to J & J ATM Machine\n";
cout << "[1]Display Balance \n";
cout << "[2]Deposit Money:\n";
cout << "[3]Withdraw Money\n";
cout << "[4]Exit;\n";
cout << "Enter your Choice:";
cin >> choice;

while (choice != 4)
{
switch (choice)
{
case 1:
displaybalance(balance);
system("pause");
break;
case 2:

cout << "Your Current Balance is " << balance << endl;
cout << "How much Money you want to deposit:" << endl;
cin >> deposit;
balance = depositbalance(balance, deposit);

cout << "Your newbalance is :" << endl;
cout << balance;
cout << endl;
cout << "Do you want to Continue?" << endl;
cin >> choice;

break;

case 3:
cout << "Your Current Balance is " << balance << endl;
cout << "How much Money do you want to withdraw:" << endl;
cin >> withdraw;
if (withdraw > balance)
cout << "Sorry you don't have enough money to withdraw" << endl;
else
balance = withdrawSum(balance, withdraw);
cout << "You Withdraw :" << withdraw << endl;
cout << "Your newbalance is :" << endl;
cout << balance<<endl;

cout << "Thank You for using J & J ATM machine till next transaction: " << endl;
system("pause");
return;
}


cout << "Enter Your Choice:" << endl;
cin >> choice;


}


}

void displaybalance(int x)
{
cout << "Your Balance is :" <<x<< endl;
}

int depositbalance(int a, int b)
{
int newbalance = a + b;
return newbalance;


}

int withdrawSum(int x, int y)
{
int newbalance = x - y;
return newbalance;
}
 
patulong po sa VB paano po lumitaw ung records ng grades base sa ID nya

SO bali may 2 datagridview ako isa sa records ng students at isa sa grades

ang gusto po sana mangyari kapag pinindot ko ung sinelect kong row sa students na id ay lilitaw ung records nya sa grades prang query na ganito

SELECT * FROM Tblgrades WHERE ID=? LIKE "ung selected na row"

Kailangan ko po ng fast reply nyo PLEASE PATULONG PO PRA ITO SA DEFENSE NMIN:help: thanks....
 
View attachment 187662sir pahelp namn po ako sa assignment ko nde ko po kasi masundan ehh salamat po

Write a Java program that accepts as input a positive integer value N in the range 1 to 1000, then proceeds to determine and output the factors of N. The program also indicates whether N is a prime number or a composite number. Assume that the input is a valid value in the specified range.
 

Attachments

  • cszz.png
    cszz.png
    490.8 KB · Views: 14
Last edited:
TS another na naguguluhan nanmn ako about sa "this" keyword.

Halimbawa may ganito akong code:

Code:
void SceneNode::attachChild(Ptr child){
	child->mParent = this;
	mChildren.push_back(std::move(child));
}

TS anu ang kinukuha ng mParent? ung buong function ba o ung class? ang gulo kaxe eh..

Eto ung header file ko

Code:
class SceneNode
{
public:
	typedef std::unique_ptr<SceneNode> Ptr;
	SceneNode();

	void  attachChild(Ptr child);
	Ptr detachChild(const SceneNode& node);

private:
	std::vector<Ptr> mChildren;
	SceneNode* mParent;
	
};

parang recursion ata to.. pero di ako sure kung ang pinapasa ko ba eh ung buong class sa sarili nyang member o ung function lang
 
willing po ako magbayad

Can anyone please help me on how to convert words into numbers 1 upto1000 only in java programming (JCREATOR) up, using array or any idea that can help me? Your answer will be highly aprreciated. And we need it in less than 4 days remaining. I’m willing to pay money Thanks a lot!
Please respect my post...

Update : number in words into its digit form. For example, the input is "one thousand twenty one" and the output must be 1021.

Please contact me or email me: [email protected] or [email protected]
 
help naman sir
LRT 1 station hmmm gamit ang C program
OUTPUT:
START:
Your Destination:
Fair:
No. of Passenger(kung ilan kaung sasakay):


Question: pano kung gusto ko bumalik sir ex. BACLARAN TO EDSA wat if sa EDSA naman ako galing ppnta ko ng baclaran
HELP ME PLSS need reply as soon as possible proj. ko to SOLO kakabaliw :(
contact me sir plss: [email protected]/09353444353
1week deadline ko tnx sir
 
Last edited:
help naman sir
LRT 1 station hmmm gamit ang C program
OUTPUT:
START:
Your Destination:
Fair:
No. of Passenger(kung ilan kaung sasakay):


Question: pano kung gusto ko bumalik sir ex. BACLARAN TO EDSA wat if sa EDSA naman ako galing ppnta ko ng baclaran
HELP ME PLSS need reply as soon as possible proj. ko to SOLO kakabaliw :(
contact me sir plss: [email protected]/09353444353
1week deadline ko tnx sir

Wow. LRT. Beginner pa lang po ako pero baka matulungan kita dyan. Ano po ba yung pinaka-description ng program nyo? Hanggang typedef, enum at konting file handling pa lang po alam ko.
 
Programming C po
while
for
if else
switch
case:
function()
{
}
string cuy,cop
OUPUT Example:
Start: (eto po ung umpsa kung san ka manggagaling ex. Tayuman)
Destination: (kung anung no. ng destinasyon na ppntahan mo )
No. of passenger: (input kung ilan kau )
Fair:(Presyo ng destinasyon na ppnthan ng lahat ng sumakay )
END: (eto ung kung san ka huminto na destinasyos ex.monumento)

at kelangan may pabalik ex. galing naman ako ng monumento going to tayuman ganun dn po ?
maraming salamat sa tulong!!
 
Programming C po
while
for
if else
switch
case:
function()
{
}
string cuy,cop
OUPUT Example:
Start: (eto po ung umpsa kung san ka manggagaling ex. Tayuman)
Destination: (kung anung no. ng destinasyon na ppntahan mo )
No. of passenger: (input kung ilan kau )
Fair:(Presyo ng destinasyon na ppnthan ng lahat ng sumakay )
END: (eto ung kung san ka huminto na destinasyos ex.monumento)

at kelangan may pabalik ex. galing naman ako ng monumento going to tayuman ganun dn po ?
maraming salamat sa tulong!!

KUYA, eto na XD Paki-copy-paste at compile na lang po. Tignan nyo po kung tama.
 

Attachments

  • LRT1SourceCode.txt
    3.1 KB · Views: 6
Back
Top Bottom