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)

Ano po ba magandang application ang gamitin?

Turbo c++ or yung Dev c++


E kasi yung dun sa Turbo c++ trial lang e.
E yun yung required sa school namen e wala naman akong mahanap na cracked version.

Gusto ko sana i suggest yung Dev c++.
Okay lang ba yon?

ok lang naman yun e.. actually parehas lang naman silang dalawa.
 
Sir Pwede poh meron poh ba kayo SAmple Database MAnagement system!!!! anu poh ba maganda topic!!!
:: Kailangan din poh ng designing eh!!!



:yipee::clap::help::help::help::help::help::help::help::yipee::yipee::clap:
 
pwede po bang malaman kung anong java reader ang pwede ko ilagay dito sa pc ko ayaw nya kasi mag read ng program pag oracle
:pray:
 
mga sir help namn po sa c++
ano pong alternative na code for name space sdt
kc sabi nung mam namin i yung ".h" yung isa ano pa po yung iba
 
mga sir help namn po sa c++
ano pong alternative na code for name space sdt
kc sabi nung mam namin i yung ".h" yung isa ano pa po yung iba

H or hpp is just a header. Namespace just means na "open" yung functions, etc. ng std sa scope na yan.

Kapalit ng namespace is going "global" na nagpopollute ng namespace.
 
pa help po any source of Accounting System? mag gawa dw kami nyan hindi ko pa alam hindi pa tinuro ..gusto ko lng po in advance study about Accounting System..thanks a lot bosing :salute:
 
H or hpp is just a header. Namespace just means na "open" yung functions, etc. ng std sa scope na yan.

Kapalit ng namespace is going "global" na nagpopollute ng namespace.


sorry po newbie a pwede po pakilinaw ty. so hpp po saka global ang pwedeng alternative sa

namespace std;?
 
If gusyo mong i-call ang functions sa std without a using namespace std, just call them by prefixing it with "std::".

You should really read a book regarding this.

Std functions are inside a namespace so do ma magagawang global yan dahil global na sya at ang namespace is just a way to minimize "namespace pollution"

www.tutorialspoint.com/cplusplus/cpp_namespaces.htm
 
pahelp po. paano po ba gawin ito.

1. write, compile and text a program that display the following patternon the screen

a.)

*
***
*****
*****
***
*

b.)

1
12
123
1234
12345

.. d ko alam kung pano, at sa java po subject namin. d ko din alm kung anong tawag dyan, d ko tuloy masearch sa youtube.
paexamplain din po kung ano ung gagawin o kung bakit naging ganyan o ganto. please.
 
Last edited:
pahelp po. paano po ba gawin ito.

1. write, compile and text a program that display the following patternon the screen

a.)

*
***
*****
*****
***
*

b.)

1
12
123
1234
12345

.. d ko alam kung pano, at sa java po subject namin. d ko din alm kung anong tawag dyan, d ko tuloy masearch sa youtube.
paexamplain din po kung ano ung gagawin o kung bakit naging ganyan o ganto. please.

buti nga ganyan lang hindi pa diamond.

bigyan lang kita ng tip.

dalawang looping yan.

1st para sa asterisk then 2nd para sa new space
 
master pa help po..pasensya na po kng marami ..ang probs kahit isa lng dyan ok na thats would be a big help ..

1.9 Class Name: NameValidation. Write a fragment of code that will read words from the keyboard until the word exit is entered. For each word except exit, report whether its first character is equal to its last character. For the required loop, use a
a. while statement
b. do-while statement

Sample Output:

Enter a word: mart
The first character is not equal to its last character: mart

Enter a word: tart
The first character is equal to its last character: tart

Enter a word: exit
Program is now terminating…


2.10.. Write a program that prints every integer value from 1 to 20 along with its squared value using the following looping structures (for, while, and do..while lop). The class name is TableOfSquares.
Sample Run :

-------Using for loop----------
Number : 1 Square : 1
Number : 2 Square : 4
Number : 3 Square : 9
Number : 4 Square : 16
Number : 5 Square : 25
Number : 6 Square : 36
Number : 7 Square : 49
Number : 8 Square : 64
Number : 9 Square : 81
Number : 10 Square : 100
Number : 11 Square : 121
Number : 12 Square : 144
Number : 13 Square : 169
Number : 14 Square : 196
Number : 15 Square : 225
Number : 16 Square : 256
Number : 17 Square : 289
Number : 18 Square : 324
Number : 19 Square : 361
Number : 20 Square : 400
-------Using while loop--------
Number : 1 Square : 1
Number : 2 Square : 4
Number : 3 Square : 9
Number : 4 Square : 16
Number : 5 Square : 25
Number : 6 Square : 36
Number : 7 Square : 49
Number : 8 Square : 64
Number : 9 Square : 81
Number : 10 Square : 100
Number : 11 Square : 121
Number : 12 Square : 144
Number : 13 Square : 169
Number : 14 Square : 196
Number : 15 Square : 225
Number : 16 Square : 256
Number : 17 Square : 289
Number : 18 Square : 324
Number : 19 Square : 361
Number : 20 Square : 400
-------Using do...while loop------
Number : 1 Square : 1
Number : 2 Square : 4
Number : 3 Square : 9
Number : 4 Square : 16
Number : 5 Square : 25
Number : 6 Square : 36
Number : 7 Square : 49
Number : 8 Square : 64
Number : 9 Square : 81
Number : 10 Square : 100
Number : 11 Square : 121
Number : 12 Square : 144
Number : 13 Square : 169
Number : 14 Square : 196
Number : 15 Square : 225
Number : 16 Square : 256
Number : 17 Square : 289
Number : 18 Square : 324
Number : 19 Square : 361
Number : 20 Square : 400

6. Class Name: Quadratic. Create a program to find the roots of a quadratic equation using the formula, d=b2-4*a*c. Note that for any negative value in d, there is no root available. If value is equal to 0, roots are equal. Use the formula r=-b/(2*a) in getting the roots. Otherwise, real roots can be derived by getting the square root of d, then use this r=-b+d/(2*a). Then, Display the roots.
 
Untested!

Code:
for( int i =1; i <= 20; i++ )
{
    cout << i << i * i <<endl;
}

int i = 0;

while( i++ <= 20 )
{
    cout << i << i * i <<endl;
}

i = 1;
do
{
    cout << i << i * i <<endl;
}
while( ++i <= 20 )
 
Last edited:
mga master pa help nmn po:praise:



Create a class named Numbers whose Main() method holds two integer variables. Assign values to the variables. Within the class, create two methods, Sum() and Difference(), that compute the sum of and difference between the values of the two variables, respectively. Each method should perform the computation and display the results. In Turn, call each of the two methods from Main(), passing the values of the two integer variables.

***add a method named product() to the program. The rpoduct() method should compute the multiplication product of the two integers, but not display the answer. instead it should return the answer to the calling main() program,which display the answer
 
Master patulong naman oh please... :help: anu po ang program sa ticket machine gamit ang VB?
 
Back
Top Bottom