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 bang magandang pang program?

visual basic oh java?

gusto ko kasing gumawa ng program
about Documenting file.

sino pwede dito?
mag paturo?

Mag babayad ako.

basic & advanced

Taytay,Cainta,Angono,

1 on 1 papaturo ako hanggang matapos yung program na gagawin.

ok lang kahit walang certificate.

Contact : 09498649715 :pray:

alam ko po yang visual basic with access backend PM lng pra online tutorial nlng tau
 
pano po ma edit ang .dll files sa visual c++ 2008?

hex editor. DLLs are technically compiled executables already. They contain executable codes referenced by either a header or an import.
 
Pwede FAVOR naman kung Sino MERON CODE ng ENROLLMENT SYSTEM dyan para sa JCREATOR, Pwede maka-enge.. NEED BADLY!!.. Pag-aaralan Kasi Namin,.. Pa-HELP naman Po, NEXT TIME KAMI Naman ang TUTULONG DITO... 24/7 ONLINE :salute:
 
idols, may problema ako nag upgrade kasi ako ng operating system. nag windows 8 na ako. eh mag iinstall sana ako ng visual basic 6.0. nung iinstall ko na ang sabi "This program has compatibility issues" tinary ko din iconfigure ung.. setting.exe>properties>compatibility tab

panu kaya?

tska ano po kaya mererecommend nyo sa akin
database. gusto ko sana gumamit ng MySQL ung pwede ko mapagpractisan habang wala pa akong work, at the same time parehas ng database cycle sa office?


tska ano po kaya mererecommend nyo sa akin
visualbasic, dati ko kasi gamit is visual basic .net 2010 kung di ako nag kakamali.

enge na din ng dl link. if maroon po kayo?
 
sir ung codes po ng calculator sa C++

ito boss oh sana makatulong sayo.

Code:
#include <iostream>
using namespace std;

void Input (float &x, float &y);

float num1=1.0, num2=1.0, result;
char operation;


int main ()
{
	cout << "Program which performs: \n\n";
	cout<<"Addition \n";
	cout<<"Subtraction \n";
	cout<<"Multiplication \n";
	cout<<"Division \n \n";
	cout << "Please input calculation operation (eg. 1 + 2): \n";
	cin >> num1 >> operation >> num2;
	
	Input (num1,num2);

	cout << "The answer is: " << result << endl;
	system ("pause");
	return 0;
}


void Input (float &x, float &y)
{
	num1 = x;
	num2 = y;

	switch (operation)
	{
		case '+':
			result = x + y;
			break;

		case '-':
			result = x - y;
			break;

		case '*':
			result = x * y;
			break;

		case '/':
			result = x / y;
			break;

		default:
			cout << "Improper operation. Please input a correct calculation operation: \n";
			cin >> num1 >> operation >> num2;
			Input (num1, num2);
	}

system("PAUSE");

}
 
Need help po para sa project namin sa school!:help:
need ko po ng simple TURBO C 2.01 program with:

if else, switch case, loop & array statements
kahit anung klaseng program pede na:excited:


thank you po sa makaka share dian:pray: sa Friday ko po ipapasa kaya nahihirapan ako gumawa tight kc sched ko! help po pls:slap:


mas cool kung may:

Title of the study
abstract
input/process/output
flowchart
system program


:rofl::rofl::rofl:
 
create a program using c language, Palindrome, Display a string being entered and show if its palindrome or not palindrome.
HELP!!!!!!!!!!!!!!!:clap::clap::clap:
 
post your programming problems here....
tapos sample input and output...,,

i'll do my very best para po matulungan kayo

ang anyone who wants to help you're all welcome here...

welcome

:clap: :excited: :dance: :yipee: :beat:

PAAYOS NAMAN PO NG INATTACH KONG FILE . AYAW MARUN . :( . AT PDE PO REQUEST? palagyan po ng array , back, and do again process . pde po ?


:thumbsup: :thanks: :clap:
 

Attachments

  • projecty.rar
    21.6 KB · Views: 9
Ricky boy is paid P1 for the first day
on the job. P2 on the second day .
P4 on the 3rd day and so on
doubling the previous day's pay.
Ricky boy works for 10 Maya. prepare
a flowchart and a program which will
calculate his wages on the 10th day
Ang his total for 10days


C programming po.yan
 
Ricky boy is paid P1 for the first day
on the job. P2 on the second day .
P4 on the 3rd day and so on
doubling the previous day's pay.
Ricky boy works for 10 Maya. prepare
a flowchart and a program which will
calculate his wages on the 10th day
Ang his total for 10days


C programming po.yan

try nyo po to:

========================================
CODE 1
========================================

#include <stdio.h>

int power(int, int);

int main() {
int total, number_of_days;

//initialize the value
number_of_days = 10;

total = power(2, number_of_days); //total = 2 to the power of 10; value ng number_of_days

//print the result
printf("\nWages on Day %d is %d.", number_of_days, total / 2);
printf("\nThe total amount received from Day 1 to Day %d is %d.", number_of_days, total - 1);

return 0; //terminate the program

} //end main

//recursive function
int power(int x, int y) {
if(y == 1)
return x;

return x * power(x, y - 1);
}


========================================
CODE 2:
========================================

#include <stdio.h>

int main() {
int i, j, total, number_of_days;

//initialize the value
number_of_days = 10;
total = 1;
i = 1;
j = 0;

while(i != number_of_days) {
do {
j++;
total = total * 2;
} while(i == j); //end do-while

i++;
} //end while

//print the result
printf("\nWages on Day %d is %d.", number_of_days, total / 2);
printf("\nThe total amount received from Day 1 to Day %d is %d.", number_of_days, total - 1);

return 0; //terminate the program
} //end main

pili ka na lang kung ano mas alam mong gawan ng flowchart. very straight-forward naman yung code. same output but different algorithm.

Note: halos may hawig sa binary-to-decimal conversion yung problem, since power of 2 yung ginamit na pagcompute sa wages.
 
:pray:
PLZ HELP NMN PO ABOUT SA THESIS NAH GAGWIN KO
BALI VB.6.0 gagamitin ko po merun po bha existing nah system po para sa "LABORATORY APPARATUS BORROWING SYSTEM"


need po may sample po kau ty...:clap::clap::clap:
 
pa help anu po ang code para makapag store ako ng elements sa array...

e2 ung sample code ko...

DataInputStream aa= new DataInputStream (System.in);

String reg [];
String user;
String pass;

Sysytem.out.print("Username:");
user = aa.readLine();
Sysytem.out.print("Password:");
pass = aa.readLine();

Gusto ko pa sana kapag nag input ung user ma iistore ung String na user saka pass sa array na reg....

thx po....:pray::pray::pray::pray::pray::pray:
 
pa help anu po ang code para makapag store ako ng elements sa array...

e2 ung sample code ko...

DataInputStream aa= new DataInputStream (System.in);

String reg [];
String user;
String pass;

Sysytem.out.print("Username:");
user = aa.readLine();
Sysytem.out.print("Password:");
pass = aa.readLine();

Gusto ko pa sana kapag nag input ung user ma iistore ung String na user saka pass sa array na reg....

thx po....:pray::pray::pray::pray::pray::pray:


i suggest na gawing mong char array yung String reg[] mo;

code would be like;

System.out.print("Username:");
user = aa.readLine();
System.out.print("Password:");
pass = aa.readLine();

char charreg[] = new char[100];
int y= 0;
user = user.concat(pass);
for(int x = 0; x<user.length(); x++)
{
charreg[x] = user.charAt(x);
}

//to convert charreg to String if you really want it to be a String array so badly ^^
charreg.toString();

System.out.print(charreg);
 
sa mga interested po sumali sa ginagawa namin na Group for Computer zone click nyo lang po yung nasa Siggy ko :thanks:
 
VB 6.0

Pano po yung pop up reminders every 6th days? Para kahit patayin yung computer nagana parin kasi naka base siya sa time ng computer. So when the 6th days come merong magpapop saying "due date" like that. Help naman po please? ASAP! :'(
 
Back
Top Bottom