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)

help guys..
gagwa ng c++ payroll

e2 ung gagawn..
please input name:
Please input your salary:
Please input no of days work:
deduction:
sss
bir
philhealth
pag ibig

acount name is:
your salary per week is:
your salary per month is:
net monthly income is:
net annual income is:
total deduction:


ayan po..pahelp please..di xe kami tinuturuan ng prof namin..please lang guys>>:pray::pray::pray::pray:
 
mga boss pa help nmn ako d2 sa code q my error kc n lumalabas, "incomparable types: char and java.lang.String"

ito ung code q
public class spaceCounter
{
public static void main(String arg[])
{
String name="The quick brown fox jump over the lazy dog";
char piece[]=name.toCharArray();
int i=0;
int space_counter=0;

while(i<piece.length)
{
if (piece==" ");
{
space_counter++;
}
i++;
}
System.out.print(space_counter);

}
}
 
Sir pde pahelp bago lang po ako dto..........4th yr hs student po ako....balak ko sanang mag i.t. nxt s.y. gusto ko sanang mag advance learning... anu po ba ung mga basic..... penge n dn po c++ at VB na pde DL.... tnx po sir...../COLOR]
 
Sir pde pahelp bago lang po ako dto..........4th yr hs student po ako....balak ko sanang mag i.t. nxt s.y. gusto ko sanang mag advance learning... anu po ba ung mga basic..... penge n dn po c++ at VB na pde DL.... tnx po sir.....
 
mga boss pa help nmn ako d2 sa code q my error kc n lumalabas, "incomparable types: char and java.lang.String"

ito ung code q

Just change this line
Code:
if (piece[i]==" ");
into
Code:
if (piece[i]==' ')
 
@chaze08, mag advanced learning ka na lang kapag alam mo na ung lesson mo. Hindi mo kasi alam kung aling programming language ang unang ituturo sa iyo, parang sa amin, Java ang programming language na unang itinuro.
 
i need suggestion what po ba magandang gawin na website para sa aming ebusiness subject we will be using vb.net po salamat
 
Here's the algo... malapit na tong solution mo

Code:
//You can do also while in this... I used for para madali.
for (i = 1; i <= number; i++)
{
	//Always reset count after a number...
	count = 0;
	
	//Dito palitan mo ng i ang 1...
	for (j = 1; j <= i; j++)
	{
		//Reverse mo yong i at j mo.
		if (j % i == 0)
		{
			count++;
		}
	}
	
	if (count == 2)
	{
		//display prime number.
	}
}




thanks sa code sir...

may ma ipapass din aq sa wakas sa prof. ko...

hehe..




last po...

enge po ako ng code sa LOADING BAR..

yung simpleng code lang po...


wag maxadong pa garbuhin.., baka po mahalata ni prof..

ito po ang screeny...

11-300x159.png




hope po ma tulungan nyo ako...
:praise::praise::help:
 
panu ba tanggalin yung .0 ex. kasi nag math.floor na ako lumabas 50.0 panu kaya 50 lang walang .0 ?
 
Ano po gagawin na source code sa "career test"? Wala po akong idea ee. PLEASE po. . . :weep:
 
my source codes po ba kayo ng stop and go pra sa train ?? repz lng po kung meron .. tnx:pray:
 
:noidea::help::noidea::help::noidea::help::noidea::help::noidea:

Guys, pahelp naman po sa programming assignment namin sa DATA STRUCTURES AND ALGORITHMS.. (This Sept. 8 na po pasahan)

Create a SORTING ALGORITHM program using turbo C and Java language.

- Selection Sort
- Exchange/Bubble Sort
- Insertion Sort
- Merge Sort
- Quick Sort Sort


Inputs:

Enter number of Elements: ____ (Example: 4)
Element 1: ____ (Example: 5)
Element 2: ____ (Example: 1)
Element 3: ____ (Example: 3)
Element 4: ____ (Example: 8)
(Elements depend on number of elements)

Output:

Sorted Elements: 1,3,5,8


:thanks: in Advance!

:noidea::help::noidea::help::noidea::help::noidea::help::noidea:
 
:noidea::help::noidea::help::noidea::help::noidea::help::noidea:

Guys, pahelp naman po sa programming assignment namin sa DATA STRUCTURES AND ALGORITHMS.. (This Sept. 8 na po pasahan)

Create a SORTING ALGORITHM program using turbo C and Java language.

- Selection Sort
- Exchange/Bubble Sort
- Insertion Sort
- Merge Sort
- Quick Sort Sort


Inputs:

Enter number of Elements: ____ (Example: 4)
Element 1: ____ (Example: 5)
Element 2: ____ (Example: 1)
Element 3: ____ (Example: 3)
Element 4: ____ (Example: 8)
(Elements depend on number of elements)

Output:

Sorted Elements: 1,3,5,8


:thanks: in Advance!

:noidea::help::noidea::help::noidea::help::noidea::help::noidea:

Hello, eto po ginawa ko using java (arrays). Patry na lang at tell me kung tama :thumbsup:

Nv3ZN.png
 

Attachments

  • My Documents.zip
    1.4 KB · Views: 19
Last edited:
MGA sir patulong po pls...
sept. 15, 2011 na po ung pasahan ee..
d q po mapa-RUN .. :((

project q po..
Turbo-C po..

make a library program.
e2 po ung output ..


[1] Name:
[2] School:
[3] Name of Book:
[4] Time In:
[5] Time out:
any correction? press (y/n):

/*if press y*/
1/2/3/4/5?:_ /*Edit po ung ininput ng user..*/

/*after ask again ..*/
any correction? /*loop po ulit*/
then gaga,it po yan ng FILE *
/*FILE HANDLING PO PARA MASAVE UNG DATA */
 
Back
Top Bottom