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)

Need Help Po...
Ask lang po how can i make a console program na mag-accept ng integer then mag output ng equivalent words nya...

Example output nya po is..
input output
100 = one hundred

Pleaser Help Me Po...
TIA :pray:
text me po 09483912949
or fb [email protected]
 
Mga sir pano po ilagay sa autohotkey script yung alt + v + t+s (example)? :pray: para pag click nang button mawawala nalang yung status bar :|
 
Create a program that will calculate the answer with you input the base and exponent.



Mga master pa tulong pu ito pu yung codes ko. Yung teacher kasi namin parang tanga e. Di nag lelecture lahat kami home study lg.
di ko po alam kung panu e output yung answer e. Sana may mka tulong mga master.

import java.util.Scanner;
public class LastActivity
{
public static void main (String [] ilaaabyaaa)
{
Scanner jake = new Scanner (System.in);
int base;
int exponent;
System.out.print("Enter the base: ");
base = jake.nextInt();
System.out.print("Enter the exponent: ");
exponent = jake.nextInt();

for (int x = 2; x<=exponent; x++){
int answer = base*base;
System.out.println(answer);
answer = base;
}
}
}
 
Create a program that will calculate the answer with you input the base and exponent.



Mga master pa tulong pu ito pu yung codes ko. Yung teacher kasi namin parang tanga e. Di nag lelecture lahat kami home study lg.
di ko po alam kung panu e output yung answer e. Sana may mka tulong mga master.

import java.util.Scanner;
public class LastActivity
{
public static void main (String [] ilaaabyaaa)
{
Scanner jake = new Scanner (System.in);
int base;
int exponent;
System.out.print("Enter the base: ");
base = jake.nextInt();
System.out.print("Enter the exponent: ");
exponent = jake.nextInt();

for (int x = 2; x<=exponent; x++){
int answer = base*base;
System.out.println(answer);
answer = base;
}
}
}

di mo na need to!

for (int x = 2; x<=exponent; x++){
int answer = base*base;
System.out.println(answer);
answer = base;
}

gamitin mo na lang yung Math.pow(base,exponent)

automatic na niya icocompute yun!
 
Last edited:
Create a program that will calculate the answer with you input the base and exponent.



Mga master pa tulong pu ito pu yung codes ko. Yung teacher kasi namin parang tanga e. Di nag lelecture lahat kami home study lg.
di ko po alam kung panu e output yung answer e. Sana may mka tulong mga master.

import java.util.Scanner;
public class LastActivity
{
public static void main (String [] ilaaabyaaa)
{
Scanner jake = new Scanner (System.in);
int base;
int exponent;
System.out.print("Enter the base: ");
base = jake.nextInt();
System.out.print("Enter the exponent: ");
exponent = jake.nextInt();

for (int x = 2; x<=exponent; x++){
int answer = base*base;
System.out.println(answer);
answer = base;
}
}
}

Ganto po sir ahh.. Ok naman po using loop eh.. :)

int teacher = 1; //wala lang akong maisip na variable
for (int x= 1; x<=exponent; x++ ) {
teacher = teacher * base;
}
System.out.println(teacher);
 
Last edited:
k
oya !! Patulong naman po , kailngan ko po kase ng program sa c++ na may looping ,array at if-else statement at the same time please po! Salamat ng madami :d godbless !!!​


up ko po to. Patulong po dyn :)
 
@Nelzkie99


yung stable_sort ang sisihin mo, hehe
ang <algorithm> function na toh ang bahala na sa pagbibigay ng arguments kay isShort


Unang-una, ang stable_sort na ang bahala dyan; ang kelangan mo lang ay magbigay ng dalawang iterator at optional na comparitor(yung binary predicate moh).
Code:
template<class BidirectionalIterator, class BinaryPredicate> void stable_sort(BidirectionalIterator _First, BidirectionalIterator _Last,BinaryPredicate  Comp);
Ang ginagawa ng stable_sort ay iniiterate nya ang binagay mong ranges(yung dalawang iterator). Sa bawat iteration, nagbabatoh sya ng argument sa binagay mong binary predicate. Halimbawa: sa first iteration, ibabatoh nya ang "hi" at "hello" sa isShort, sa second iteration eh yung "hello" at "hey" nman and so on..., Note: halimbawa ko lang toh, hindi toh ang mismong implementation ng stable_sort

Nung una, hindi ko din toh magets pero nung nagtagal nakuha ko din, naalala ko tuloy banong-bano ako dito dati, :lol:


Maraming salamat dito sir.. Nagets ko na. magulo ang c++ pero masaya pag aralan
 
i had a problem with this tictactoe c++ program sbe kase sa men ni ser dagdagan namin ung 9 boxes ng 15 pataas eto ung code na dinagdagan ko ng 10-15 bkit 1 ung lumalabas kaza d2

#include <iostream.h>

char square[16] = {'o','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15'};

int checkwin();
void board();

int main()
{
int player = 1,i,choice;

char mark;
do
{
board();
player=(player%2)?1:2;

cout << "Player " << player << ", enter a number: ";
cin >> choice;

mark=(player == 1) ? 'X' : 'O';

if (choice == 1 && square[1] == '1')

square[1] = mark;
else if (choice == 2 && square[2] == '2')

square[2] = mark;
else if (choice == 3 && square[3] == '3')

square[3] = mark;
else if (choice == 4 && square[4] == '4')

square[4] = mark;
else if (choice == 5 && square[5] == '5')

square[5] = mark;
else if (choice == 6 && square[6] == '6')

square[6] = mark;
else if (choice == 7 && square[7] == '7')

square[7] = mark;
else if (choice == 8 && square[8] == '8')

square[8] = mark;
else if (choice == 9 && square[9] == '9')

square[9] = mark;
else if (choice == 10 && square[10] == '10')

square[10] = mark;
else if (choice == 11 && square[11] == '11')

square[11] = mark;
else if (choice == 12 && square[12] == '12')

square[12] = mark;
else if (choice == 13 && square[13] == '13')

square[13] = mark;
else if (choice == 14 && square[14] == '14')

square[14] = mark;

else if (choice == 15 && square[15] == '15')

square[15] = mark;

else
{
cout<<"Invalid move ";

player--;
cin.ignore();
cin.get();
}
i=checkwin();

player++;
}while(i==-1);
board();
if(i==1)

cout<<"==>\aPlayer "<<--player<<" win ";
else
cout<<"==>\aGame draw";

cin.ignore();
cin.get();
return 0;
}

/*********************************************

FUNCTION TO RETURN GAME STATUS
1 FOR GAME IS OVER WITH RESULT
-1 FOR GAME IS IN PROGRESS
O GAME IS OVER AND NO RESULT
**********************************************/

int checkwin()
{
if (square[1] == square[2] && square[2] == square[3])

return 1;
else if (square[4] == square[5] && square[5] == square[6])

return 1;
else if (square[7] == square[8] && square[8] == square[9])
return 1;
else if (square[10] == square[11] && square[11] == square[12])

return 1;
else if (square[13] == square[14] && square[14] == square[15])

return 1;


else if (square[1] == square[4] && square[4] == square[7])

return 1;
else if (square[2] == square[5] && square[5] == square[8])

return 1;
else if (square[3] == square[6] && square[6] == square[9])

return 1;
else if (square[4] == square[7] && square[7] == square[10])

return 1;
else if (square[5] == square[8] && square[8] == square[11])

return 1;
else if (square[6] == square[9] && square[9] == square[12])

return 1;
else if (square[7] == square[10] && square[10] == square[13])

return 1;
else if (square[8] == square[11] && square[11] == square[14])

return 1;
else if (square[9] == square[12] && square[12] == square[15])

return 1;

else if (square[1] == square[5] && square[5] == square[9])

return 1;
else if (square[3] == square[5] && square[5] == square[7])

return 1;
else if (square[4] == square[8] && square[8] == square[12])

return 1;
else if (square[6] == square[8] && square[8] == square[10])

return 1;
else if (square[7] == square[11] && square[11] == square[15])

return 1;
else if (square[9] == square[11] && square[11] == square[13])

return 1;


else if (square[1] != '1' && square[2] != '2' && square[3] != '3'
&& square[4] != '4' && square[5] != '5' && square[6] != '6'
&& square[7] != '7' && square[8] != '8' && square[9] != '9'
&& square[10] != '10' && square[11] != '11' && square[12] != '12'
&& square[13] != '13' && square[14] != '14' && square[15] != '15')



return 0;
else
return -1;
}


/*******************************************************************
FUNCTION TO DRAW BOARD OF TIC TAC TOE WITH PLAYERS MARK
********************************************************************/


void board()
{
("cls");
cout << "\n\n\tTic Tac Toe\n\n";

cout << "Player 1 (X) - Player 2 (O)" << endl << endl;
cout << endl;

cout << " | | " << endl;
cout << " " << square[1] << " | " << square[2] << " | " << square[3] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[4] << " | " << square[5] << " | " << square[6] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[7] << " | " << square[8] << " | " << square[9] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[10] << " | " << square[11] << " | " << square[12] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;



cout << " " << square[13] << " | " << square[14] << " | " << square[15] << endl;

cout << " | | " << endl << endl;
}

/*******************************************************************
END OF PROJECT
********************************************************************/
tnx n advance sana mabasa mo to kgad may + kasi sa final ung unang makakagawa eh heh
 
i had a problem with this tictactoe c++ program sbe kase sa men ni ser dagdagan namin ung 9 boxes ng 15 pataas eto ung code na dinagdagan ko ng 10-15 bkit 1 ung lumalabas kaza d2

#include <iostream.h>

char square[16] = {'o','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15'};

int checkwin();
void board();

int main()
{
int player = 1,i,choice;

char mark;
do
{
board();
player=(player%2)?1:2;

cout << "Player " << player << ", enter a number: ";
cin >> choice;

mark=(player == 1) ? 'X' : 'O';

if (choice == 1 && square[1] == '1')

square[1] = mark;
else if (choice == 2 && square[2] == '2')

square[2] = mark;
else if (choice == 3 && square[3] == '3')

square[3] = mark;
else if (choice == 4 && square[4] == '4')

square[4] = mark;
else if (choice == 5 && square[5] == '5')

square[5] = mark;
else if (choice == 6 && square[6] == '6')

square[6] = mark;
else if (choice == 7 && square[7] == '7')

square[7] = mark;
else if (choice == 8 && square[8] == '8')

square[8] = mark;
else if (choice == 9 && square[9] == '9')

square[9] = mark;
else if (choice == 10 && square[10] == '10')

square[10] = mark;
else if (choice == 11 && square[11] == '11')

square[11] = mark;
else if (choice == 12 && square[12] == '12')

square[12] = mark;
else if (choice == 13 && square[13] == '13')

square[13] = mark;
else if (choice == 14 && square[14] == '14')

square[14] = mark;

else if (choice == 15 && square[15] == '15')

square[15] = mark;

else
{
cout<<"Invalid move ";

player--;
cin.ignore();
cin.get();
}
i=checkwin();

player++;
}while(i==-1);
board();
if(i==1)

cout<<"==>\aPlayer "<<--player<<" win ";
else
cout<<"==>\aGame draw";

cin.ignore();
cin.get();
return 0;
}

/*********************************************

FUNCTION TO RETURN GAME STATUS
1 FOR GAME IS OVER WITH RESULT
-1 FOR GAME IS IN PROGRESS
O GAME IS OVER AND NO RESULT
**********************************************/

int checkwin()
{
if (square[1] == square[2] && square[2] == square[3])

return 1;
else if (square[4] == square[5] && square[5] == square[6])

return 1;
else if (square[7] == square[8] && square[8] == square[9])
return 1;
else if (square[10] == square[11] && square[11] == square[12])

return 1;
else if (square[13] == square[14] && square[14] == square[15])

return 1;


else if (square[1] == square[4] && square[4] == square[7])

return 1;
else if (square[2] == square[5] && square[5] == square[8])

return 1;
else if (square[3] == square[6] && square[6] == square[9])

return 1;
else if (square[4] == square[7] && square[7] == square[10])

return 1;
else if (square[5] == square[8] && square[8] == square[11])

return 1;
else if (square[6] == square[9] && square[9] == square[12])

return 1;
else if (square[7] == square[10] && square[10] == square[13])

return 1;
else if (square[8] == square[11] && square[11] == square[14])

return 1;
else if (square[9] == square[12] && square[12] == square[15])

return 1;

else if (square[1] == square[5] && square[5] == square[9])

return 1;
else if (square[3] == square[5] && square[5] == square[7])

return 1;
else if (square[4] == square[8] && square[8] == square[12])

return 1;
else if (square[6] == square[8] && square[8] == square[10])

return 1;
else if (square[7] == square[11] && square[11] == square[15])

return 1;
else if (square[9] == square[11] && square[11] == square[13])

return 1;


else if (square[1] != '1' && square[2] != '2' && square[3] != '3'
&& square[4] != '4' && square[5] != '5' && square[6] != '6'
&& square[7] != '7' && square[8] != '8' && square[9] != '9'
&& square[10] != '10' && square[11] != '11' && square[12] != '12'
&& square[13] != '13' && square[14] != '14' && square[15] != '15')



return 0;
else
return -1;
}


/*******************************************************************
FUNCTION TO DRAW BOARD OF TIC TAC TOE WITH PLAYERS MARK
********************************************************************/


void board()
{
("cls");
cout << "\n\n\tTic Tac Toe\n\n";

cout << "Player 1 (X) - Player 2 (O)" << endl << endl;
cout << endl;

cout << " | | " << endl;
cout << " " << square[1] << " | " << square[2] << " | " << square[3] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[4] << " | " << square[5] << " | " << square[6] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[7] << " | " << square[8] << " | " << square[9] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;

cout << " " << square[10] << " | " << square[11] << " | " << square[12] << endl;

cout << "_______|_______|_______" << endl;
cout << " | | " << endl;



cout << " " << square[13] << " | " << square[14] << " | " << square[15] << endl;

cout << " | | " << endl << endl;
}

/*******************************************************************
END OF PROJECT
********************************************************************/
tnx n advance sana mabasa mo to kgad may + kasi sa final ung unang makakagawa eh heh

/*
Hi! Eto na. . . Eto na. Eto na! Kani-kanina lang ako nag-online pero sana mabasa mo 'to agad.
C pa lang tinuturo sa amin pero almost the same lang naman yung C at C++ kaya inapply ko yung mga natutuhan ko.
Yung pagkakamali mo lang ay ginawa mong character yung 10 - 15(2 characters kasi yun kaya considered as string sya).
So ayun, gumamit ako ng 2 dimensional array(array of strings).
string.h para sa mga ss.
strcmp() para i-compare yung strings(in ASCII. Di kasi pwede yung '==') at
strcpy() para maglagay ng string value sa string(di rin kasi pwede yung '=').
Masyadong masalimuot yung strings noh??? Hahaha. Tinuro naman ata sa inyo yan.
Medyo inayos ko lang ng konti yung program mo. Good luck XD
BTW. I'm using Dev-C++ :-)
Thanks nga pala for experience. Hahaha.
*/

#include <iostream>
#include <string.h>

using namespace std;

char square[17] [3] = {"", " 1", " 2", " 3", " 4", " 5", " 6", " 7", " 8", " 9", "10", "11", "12", "13", "14", "15"};
int checkwin();
void board();

int main(){
int player = 1, i, choice;
char mark[3];
do{
board();
(player % 2 == 0)? player = 2 : player = 1;

cout << "\nPlayer " << player << ", enter a number: ";
cin >> choice;

(player == 1) ? strcpy(mark, " X") : strcpy(mark, " O");

if (choice == 1 && strcmp(square[1], " 1") == 0)
strcpy(square[1], mark);
else if (choice == 2 && strcmp(square[2], " 2") == 0)
strcpy(square[2], mark);
else if (choice == 3 && strcmp(square[3], " 3") == 0)
strcpy(square[3], mark);
else if (choice == 4 && strcmp(square[4], " 4") == 0)
strcpy(square[4], mark);
else if (choice == 5 && strcmp(square[5], " 5") == 0)
strcpy(square[5], mark);
else if (choice == 6 && strcmp(square[6], " 6") == 0)
strcpy(square[6], mark);
else if (choice == 7 && strcmp(square[7], " 7") == 0)
strcpy(square[7], mark);
else if (choice == 8 && strcmp(square[8], " 8") == 0)
strcpy(square[8], mark);
else if (choice == 9 && strcmp(square[9], " 9") == 0)
strcpy(square[9], mark);
else if (choice == 10 && strcmp(square[10], "10") == 0)
strcpy(square[10], mark);
else if (choice == 11 && strcmp(square[11], "11") == 0)
strcpy(square[11], mark);
else if (choice == 12 && strcmp(square[12], "12") == 0)
strcpy(square[12], mark);
else if (choice == 13 && strcmp(square[13], "13") == 0)
strcpy(square[13], mark);
else if (choice == 14 && strcmp(square[14], "14") == 0)
strcpy(square[14], mark);
else if (choice == 15 && strcmp(square[15], "15") == 0)
strcpy(square[15], mark);
else{
cout<<"Invalid move ";

player--;
cin.ignore();
cin.get();
}

i=checkwin();
player++;
}
while(i==-1);
board();
if(i==1)

cout<<"==>\aPlayer "<<--player<<" win ";
else
cout<<"==>\aGame draw";

cin.ignore();
cin.get();
return 0;
}

/*********************************
FUNCTION TO RETURN GAME STATUS
1 FOR GAME IS OVER WITH RESULT
-1 FOR GAME IS IN PROGRESS
O GAME IS OVER AND NO RESULT
**********************************/

int checkwin(){
if (strcmp(square[1], square[2]) == 0 && strcmp(square[2], square[3]) == 0)
return 1;
else if (strcmp(square[4], square[5]) == 0 && strcmp(square[5], square[6]) == 0)
return 1;
else if (strcmp(square[7], square[8]) == 0 && strcmp(square[8], square[9]) == 0)
return 1;
else if (strcmp(square[10], square[11]) == 0 && strcmp(square[11], square[12]) == 0)
return 1;
else if (strcmp(square[13], square[14]) == 0 && strcmp(square[14], square[15]) == 0)
return 1;
else if (strcmp(square[1], square[4]) == 0 && strcmp(square[4], square[7]) == 0)
return 1;
else if (strcmp(square[2], square[5]) == 0 && strcmp(square[5], square[8]) == 0)
return 1;
else if (strcmp(square[3], square[6]) == 0 && strcmp(square[6], square[9]) == 0)
return 1;
else if (strcmp(square[4], square[7]) == 0 && strcmp(square[7], square[10]) == 0)
return 1;
else if (strcmp(square[5], square[8]) == 0 && strcmp(square[8], square[11]) == 0)
return 1;
else if (strcmp(square[6], square[9]) == 0 && strcmp(square[9], square[12]) == 0)
return 1;
else if (strcmp(square[7], square[10]) == 0 && strcmp(square[10], square[13]) == 0)
return 1;
else if (strcmp(square[8], square[11]) == 0 && strcmp(square[11], square[14]) == 0)
return 1;
else if (strcmp(square[9], square[12]) == 0 && strcmp(square[12], square[15]) == 0)
return 1;
else if (strcmp(square[1], square[5]) == 0 && strcmp(square[5], square[9]) == 0)
return 1;
else if (strcmp(square[3], square[5]) == 0 && strcmp(square[5], square[7]) == 0)
return 1;
else if (strcmp(square[4], square[8]) == 0 && strcmp(square[8], square[12]) == 0)
return 1;
else if (strcmp(square[6], square[8]) == 0 && strcmp(square[8], square[10]) == 0)
return 1;
else if (strcmp(square[7], square[11] ) == 0 && strcmp(square[11], square[15]) == 0)
return 1;
else if (strcmp(square[9], square[11]) == 0 && strcmp(square[11], square[13]) == 0)
return 1;
else if (strcmp(square[1], " 1") != 0 && strcmp(square[2], " 2") != 0 && strcmp(square[3], " 3") != 0
&& strcmp(square[4], " 4") != 0 && strcmp(square[5], " 5") != 0 && strcmp(square[6], " 6") != 0
&& strcmp(square[7], " 7") != 0 && strcmp(square[8], " 8") != 0 && strcmp(square[9], " 9") != 0
&& strcmp(square[10], "10") != 0 && strcmp(square[11], "11") != 0 && strcmp(square[12], "12") != 0
&& strcmp(square[13], "13") != 0 && strcmp(square[14], "1") != 0 && strcmp(square[15], "15") != 0)
return 0;
else
return -1;
}


/************************************************** *******
FUNCTION TO DRAW BOARD OF TIC TAC TOE WITH PLAYERS MARK
************************************************** ********/


void board(){
system("cls");
cout << "\n\tTic Tac Toe\n\n";
cout << "Player 1 (X) - Player 2 (O)" << endl << endl;
cout << endl;
cout << " _______ _______ _______" << endl;
cout << "| | | |" << endl;
cout << "| " << square[1] << " | " << square[2] << " | " << square[3] << " |" << endl;
cout << "|_______|_______|_______|" << endl;
cout << "| | | |" << endl;
cout << "| " << square[4] << " | " << square[5] << " | " << square[6] << " |" << endl;
cout << "|_______|_______|_______|" << endl;
cout << "| | | |" << endl;
cout << "| " << square[7] << " | " << square[8] << " | " << square[9] << " |" << endl;
cout << "|_______|_______|_______|" << endl;
cout << "| | | |" << endl;
cout << "| " << square[10] << " | " << square[11] << " | " << square[12] << " |" << endl;
cout << "|_______|_______|_______|" << endl;
cout << "| | | |" << endl;
cout << "| " << square[13] << " | " << square[14] << " | " << square[15] << " |" << endl;
cout << "|_______|_______|_______|" << endl;
cout << "" << endl;
}
/*****************
END OF PROJECT
******************/
 
hi..info naman or pde makahingi ng source code about java(language) and barcode scanner(hardware) integration..tnx

- - - Updated - - -

hi..info naman or pde makahingi ng source code about java(language) and barcode scanner(hardware) integration..tnx
 
Hi sir ask ko lang kung may guide ka on how I can make an online database for a VB6 application? For LAN I'm using Microsoft SQL as the database. Kailangan bang palitan ko yung database or at least my tweaks ka lang sa mga connection para maging online ang database?
 
Hi sir ask ko lang kung may guide ka on how I can make an online database for a VB6 application? For LAN I'm using Microsoft SQL as the database. Kailangan bang palitan ko yung database or at least my tweaks ka lang sa mga connection para maging online ang database?

Need mo lang malaman ang IP address ng PC kung saan naka-install ang Server Database mo.
The palitan mo lang yung connection string mo sa code mo.
 
Mga idols pa help naman sa assignment ko na pizza order sa java programming
 
Sir, may DTR system ka po ba in C? Need ko lang po kasi for my project :/ I know di ako active dito pero everyday po ako ng oopen ng email..
Pasend po ng code nyu mga sir kung may DTR system kayu in C language.. here is my email, [email protected]
Maraming salamat po sa mag sesend.. Tsaka mag sesearch na din ako kung may makita ako :pray::pray::pray:
 
Re: All about programming (Specially c, c , VB, Java)

Mga sir paanu po yung code ng pagkuha ng value sa combo box?? At panu po gumawa ng bagong window pagka kinilik yung isang button ty po sa sasagot java po language po ako...
 
Need mo lang malaman ang IP address ng PC kung saan naka-install ang Server Database mo.
The palitan mo lang yung connection string mo sa code mo.

Wala na bang ibang gagawin kung di ganyan lang? Wala ka ng ira-routed port? What if kung mySQL ang database, connection string lang din ba ang papalitan?
 
Ts pa help naman po sa Senior Citizen System para po sa thesis namin. gawa ka lang po ng sample tas edit ko na po yung mga iba kung meron man

eto po email add ko [email protected]
 
Back
Top Bottom