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!

-= Having Difficulties in C++ and Java? Be a Part of This Thread =-

Re: -= Having Difficulty in C++? Be a Part of This Thread =-

sir pwede ka po ba magpost d2 ng mga activities or mga assignments mo dati para makapag practice po lalo na po sa loopings about sa asterisk pyramid , half diamond asterisk, diamond asterisk , triangol asterisk lol ^_^
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

sir pwede ka po ba magpost d2 ng mga activities or mga assignments mo dati para makapag practice po lalo na po sa loopings about sa asterisk pyramid , half diamond asterisk, diamond asterisk , triangol asterisk lol ^_^


i-try mo to multiplication table
tatanungin yung user ng integer tapos kunyari pag 5..
hanggang 5 lang yung multiplication table nya..

sample output:
1 2 3 4.......9
2 4 6 8......18
3 6 9 12.....27
4 8 12 16.....36
.
.
.
.
9.....................81


eto pa isa, fibonacci sequence
search mo na lang sa net kung ano yang fibonacci sequence then gawan mo ng algorithm


eto pa
factorial.
yung 5 ang input ng user.

sample output:
factorial of 5

factorial of 5 is 120


eto yung isa kong ginawa dati..
right triangle ang mabubuo nya..
tatanungin yung user kung ilang levels yung triangle then anong character ang gagamitn..
yung character pwedeng letter or special character..

sample output:
levels: 5
character: K
K
KK
KKK
KKKK
KKKKK

ayan puro looping yang mga yan :lol: :thumbsup:
 
Last edited:
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

yes! salamat po ^_^ kalat kalat utak ko d2 fibonacci sequence LOL pinag aad yung magkasunod na numero ^_^ makati sa utak masarap gawin
 
Last edited:
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

yes! salamat po ^_^ kalat kalat utak ko d2 fibonacci sequence LOL pinag aad yung magkasunod na numero ^_^ makati sa utak masarap gawin


challenging yang fibonacci sequence na yan.. nagawa ko na yan dati nung college ako eh tapos ngayon di ko na magawa ulit :rofl:
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

pa BM TS...:thanks: learning C++, pagcollege kasi gamit namin C language lang...ngayon sa work..UNIX...tanong ko po: ano po difference ng UNIX sa C++ at C language, syntax lang po bah? :thanks: mga idoL
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

im an ELECTRICAL ENGINEERING student anu po magandang gawing Thesis namin , related sa course namin , Please :( help mga ka SB kelangan ko tulong nyo add nyo po ako sa fb !:(

SORRY SA STORBO :( please help lalo na mga tiga bataan
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

sir pwede ka po ba magpost d2 ng mga activities or mga assignments mo dati para makapag practice po lalo na po sa loopings about sa asterisk pyramid , half diamond asterisk, diamond asterisk , triangol asterisk lol ^_^

try mo to bro

eto ung TARGET OUTPUT
Code:
**********
********
*******
*****
***
**
*

eto ung code
Code:
#include<iostream.h>
#include<conio.h>
int main ()
{
clrscr ();
int j, i;
for (i=10;i>=1;i--)
	{
	for (j=1;j<=i;j++)
	   cout<<"*";
	   cout<<endl;
	   }
getch ();
return 0;
}

ung msdos yan
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

salamat budoy ^_^ sir diaven anu po ba gamit na ebook nyu nung nag start kayo at nung nag grow ung knowledge mo? dun ka po ba naging professional sa ebook na yun
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

salamat budoy ^_^ sir diaven anu po ba gamit na ebook nyu nung nag start kayo at nung nag grow ung knowledge mo? dun ka po ba naging professional sa ebook na yun


hala hindi pa ko professional sa programming.. actually beginner palang ako sa programming eh :lol:

self study lang ako ngayon ng c++ at java.. :thumbsup:

nasa first page lang yung gamit kong pdf file, yung galing sa cpluscplus.com :thumbsup:
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-


hala hindi pa ko professional sa programming.. actually beginner palang ako sa programming eh :lol:

self study lang ako ngayon ng c++ at java.. :thumbsup:

nasa first page lang yung gamit kong pdf file, yung galing sa cpluscplus.com :thumbsup:

wew..:thanks: sir diaven...kaw na po muna bahala dito..may laboratory set na naman kasi kami ngayon sa computer programming 1 :)
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

Baguhan lang ako sa C++ sana makatulong tong thread. :thanks:
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

p marka
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

Hello po... Mag papatulong lng po sana ako.. may kulang at may error po kce ung gnawa kong program ee.. >_<

ito po ung gnawa ko..

#include "stdafx.h"
#include <iostream>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
int iNum1, iNum2, no, add, sub, div, times;

cout<<"Input The First Number:";
cin>>iNum1;

cout<<"\nInput The Second Number";
cin>>iNum2;

cout<<"\nChoose The Operator:";
cin>>add,sub,div,times;

if ( iNum1 + iNum2)
cout<<"The Sum is:" << iNum1 + iNum2 << endl;

if ( iNum1 - iNum2)
cout<<"The Difference is:" << iNum1 - iNum2 << endl;

if ( iNum1 * iNum2)
cout<<"The Times is:" << iNum1 * iNum2 <<endl;

if (iNum1 / iNum2)
cout<<"The Division is:" << iNum1 * iNum2 <<endl;

system("pause");


return 0;
}

bali ano po, Microsoft Visual C++ 2010 Express ang gamit ko po..

pinapagawa po kce kme ng prof nmin ng program na kapag nag input ka ng 1st at 2nd tpos pipili ka ng operations like " + - * / " tpos pag na input mo na ung 2 numbers at ung napili mong operations ay lalabas na ung sagot..

Pa help nman po! :help: :weep:
 
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

Hello po... Mag papatulong lng po sana ako.. may kulang at may error po kce ung gnawa kong program ee.. >_<

ito po ung gnawa ko..

#include "stdafx.h"
#include <iostream>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
int iNum1, iNum2, no, add, sub, div, times;

cout<<"Input The First Number:";
cin>>iNum1;

cout<<"\nInput The Second Number";
cin>>iNum2;

cout<<"\nChoose The Operator:";
cin>>add,sub,div,times;

if ( iNum1 + iNum2)
cout<<"The Sum is:" << iNum1 + iNum2 << endl;

if ( iNum1 - iNum2)
cout<<"The Difference is:" << iNum1 - iNum2 << endl;

if ( iNum1 * iNum2)
cout<<"The Times is:" << iNum1 * iNum2 <<endl;

if (iNum1 / iNum2)
cout<<"The Division is:" << iNum1 * iNum2 <<endl;

system("pause");


return 0;
}

bali ano po, Microsoft Visual C++ 2010 Express ang gamit ko po..

pinapagawa po kce kme ng prof nmin ng program na kapag nag input ka ng 1st at 2nd tpos pipili ka ng operations like " + - * / " tpos pag na input mo na ung 2 numbers at ung napili mong operations ay lalabas na ung sagot..

Pa help nman po! :help: :weep:

eto na po..sana magustuhan mo :)

/B9vdp <--- add adf.ly in before​
 
Last edited:
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

Ok na po!! :)) Maraming maraming salamat po! hahaha.. natawa ako sa gnawa kong sa division.. wahahhaha.. Quetient pla :D hahaha.. SALAMAT PO! :salute:
 
Last edited:
Re: -= Having Difficulty in C++? Be a Part of This Thread =-

ang looping ba sa flowchart at sa c++ iisa lng?nhihirapan ako sa looping ng flowchart eh sa pg gwa :weep:
 
Back
Top Bottom