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)

patulong din po ako pls. need ko po sana ng mga tutorials ng lahat ng programming languages at mga techniques po sa paggawa or pag-analyze ng flowchart nahihirapan po kc ako eh, pls po patulong , maraming salamat po :)
 
patulong naman po sa pagawa ng game..ung madali lang pong gawin...
ang alam lang po namin gamitin ay if else if else...bago palang po kasi kami sa c++
dev c++ po pala gamit naming apps
 
patulong naman po pano ang code sa c++ ng bundy clock..
time in and time out.. yun po kasi yung proposal ko.. thanks!
 
Need ko po ng C++ or C na code for getting the factorial of a number in the simplest way.. tyvm :)

Correct me if i'm wrong, diba ganito yan? halimbawa 7 factorial (7!) = 7*6*5*4*3*2*1?

so ibig sabihin kailangan mo lang mag input ng isang number then i-decrement like this:

Code:
#include <iostream>
#include <conio>

main(){
   int n;
   long fac=1;

   cout<<"Enter a number: ";
   cin>>n;

   for(int i=n;i>=1;i--)
      fac*=i;

   cout<<n<<"! = "<<fac;

   getch();
   return 0;
}
 
Last edited:
Help me pano mag gawa ng system sa visual basic

mga idol pano ba mag gawa ng system sa visual basic pa help nman kahit idea lang pllsss tnxx :D
 
SINO PO MAY SAMPLE NG PROGRAM DIYAN NA "product code"

yung mag enter po ako ng
date kung kelan siya ginawa at yung name ng product(maximum char po ng product is 6. halimbawa po "wilkins" and name ng product ang print po nia ay "wilkin" lang. at kung ang product name po eh less than 6 my lalabas pong numbers na random. halimbawa po "c2" ang nilagay ang print po nia "c29879"
example

Manufacturing date(dd-mm-yyyy): 01-01-2013
product name: wilkins

result: 01012013wilkin

isa pa

Manufacturing date(dd-mm-yyyy): 01-01-2013
product name: c2

reslut: 01012013c29845


text me sa marunong po willing mag bayad ng load.
09275617437
thanks po mga ka sym.
 
sir pa help po..ano po code na ggmitin q..kz ang pnapagawa ng prof.q e mgccode ng sa calacultor..ang nmber e 0-9..ang operasyon e add,minus,tims at divide..pa help po
 
C++
pwde pahelp sa program about Prime Number and Prime Factorization.


--pag nag-input ako ng number, if prime ang gi-input ko... mag-o-ouput siya ng PRIME,

pag COMPOSITE number naman ang gi-input ko, mag-o-ouput siya ng PRIME FACTORS.


ex1.
ENTER A NUMBER:
>> 5
PRIME
----------------------------------------
ex2.
ENTER A NUMBER:
>> 8
2.2.2 or 2*2*2 or 2 2 2

kelangan ko po, kahit simple lang pwde na.
thanks.
 
guys, help please ! i need sample C++ or java program. kahit ano basta my convertion.
Thanks in advance.
 
mga bro baka meron kayo jan natago na css website na merong button link . need ko lang po kasi ng 20 website, 4 na lang kulang ko :) salamat sa mag hehelp
 
pa help nman po. May project kmi c++ code

yung Evaluation ng Polynomial

example maglagay ka kung ilang terns ang gusto mo, pagkatapos mag-input ka ng coefficient at pag natapos na ma-input tsaka lalabas ang evaluation

:help:
 
We need programming project ideas for our subject Data Communications...Please help thanks :)
 
Pa help po gumawa ng pyramid ng alphabet using array poh
Direct na po wla na po iinput thx
Output:
a
bcb
cdedc
defgfed
efghihgfe
fghijkjihgf
ghijklmlkjihg
hijklmnonmlkjih
ijklmnopqponmlkji
jklmnopqrsrqponmlkj
klmnopqrstutsrqponmlk
lmnopqrstuvwvutsrqponml
mnopqrstuvwxyxwvutsrqponm
nopqrstuvwxyz{zyxwvutsrqpon
 
Patulong naman po sa vb. Bali ang gagawin ko kase ay isang computerized entrance exam. Tapos pagtapos mag exam mag susuggest mismo yung system kung anung pwede nyang kuning course. Patulong po -_- please.
 
TS pa Help naman po... Sample naman po ng Simple JAVA CODE na mka intput ka ng Username & Password... In other words yung maka login TS. yung simple lang po no need GUI.

parang ganito ang code po.

String User;
Strin Pass;

S.O.P("Enter your Username:");

S.O.P("Enter your Password:");

tapus merong If conditions na for exampple,

if username is not equal then print error else WELCOME...


Tnx po
 
bro, pde pa explain... di q kc gaano gets ung "do - while & while" ...

gnito kc pagka.intindi q sa do - while ..


do = what to perform
while in "do-while" statement = repeat "do" if the statement is true...


pde poh pa explain, di q tlaga gets msyado... pa lagay nlng ng " // "



‪#‎include‬<stdio.h>
#include<conio.h>

void main(){

clrscr();
int x = 1;
int limit = 5;
int choice;

for ( x = 1 ; x <= limit ; x++){
printf("\n%d", x);
}
do {
printf("\nContinue Counting?");
scanf("%d", &choice);
if ( choice == 1 ){
printf ("Up to:");
scanf("%d", &limit);
if ( limit>= x ){
x++;
while ( x <= limit){
printf ("\n%d", x);
x++;
}
x--;
}
else{
choice = 2;
}
}

}while ( choice == 1);
printf("\n\n Exit");

getch();
}
 
Sir , Ask Lang Po Meron Po Ba Kayong Installer Ng Java in JCreator For Win XP ?:help::help::help::help:
 
Back
Top Bottom