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)

#include<iostream.h>
#include<conio.h>

main(void)
{
clrscr();
int num1, num2, num3, sum1;
char top;

top:

cout<<"ENter first number: \t\t";cin>>num1;
cout<<"Enter second number:\t"<<"+\t";cin>>num2;
cout<<"Enter third number: \t\t";cin>>num3;
cout<<"\t\t\t\t-----\n";

cout<<"The sum of the 3 numbers: ";cout<<num1+num2+num3<<endl<<endl;
cout<<"Do you want to count press y/n? ";cin>>top;
if(top=='y')
goto top;
getch();
return 0;
}

TS pede nyo po bang iconvert yn sa JAVA hnde q tlga maintindihan ang C++:weep:
 
pa help po

//WAP that will accept a civil status of a student.
//Determine the status and then display it

import java.io.*;

public class Mexer1RJDRM{
public static void main(String args[])throws IOException{
BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
String status;
System.out.println("Enter Civil Status");
status = johndy.readLine();

if(status=='s')
System.out.print("The status is single");

else if(status=='m')
System.out.print("The status is married");

else if(status=='c')
System.out.print("The status is complicated");
}
}

--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------

//WAP that will accept a gender of a student.
//If the gender is MALE display "Good morning Sir".
//If the gender is FEMALE display "Good morning Ma'am".
//Otherwise display "Invalid Character".

import java.io.*;

public class Mexer3RJDRM {
public static void main(String args[])throws IOException{
BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
String gender = " ";
System.out.println("Enter Gender");
gender = johndy.readLine();

if(gender == 'male')
System.out.print("Good morning Sir");

else if(gender == 'female')
System.out.print("Goog morning Ma'am");

else
System.out.print("Invalid Character");
}
}
 
pa help po

//WAP that will accept a civil status of a student.
//Determine the status and then display it

import java.io.*;

public class Mexer1RJDRM{
public static void main(String args[])throws IOException{
BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
String status;
System.out.println("Enter Civil Status");
status = johndy.readLine();

if(status=='s')
System.out.print("The status is single");

else if(status=='m')
System.out.print("The status is married");

else if(status=='c')
System.out.print("The status is complicated");
}
}

--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------

//WAP that will accept a gender of a student.
//If the gender is MALE display "Good morning Sir".
//If the gender is FEMALE display "Good morning Ma'am".
//Otherwise display "Invalid Character".

import java.io.*;

public class Mexer3RJDRM {
public static void main(String args[])throws IOException{
BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
String gender = " ";
System.out.println("Enter Gender");
gender = johndy.readLine();

if(gender == 'male')
System.out.print("Good morning Sir");

else if(gender == 'female')
System.out.print("Goog morning Ma'am");

else
System.out.print("Invalid Character");
}
}


Code:
import java.io.*;

 public class Mexer1RJDRM{
 public static void main(String args[])throws IOException{
 BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
 String status="";
 System.out.println("Enter Civil Status");
 status = johndy.readLine();

 if(status.charAt(0)=='s')
 System.out.print("The status is single");

 else if(status.charAt(0)=='m')
 System.out.print("The status is married");

 else if(status.charAt(0)=='c')
 System.out.print("The status is complicated");
 }
 }


Code:
//WAP that will accept a gender of a student.
 //If the gender is MALE display "Good morning Sir".
 //If the gender is FEMALE display "Good morning Ma'am".
 //Otherwise display "Invalid Character".

 import java.io.*;

 public class Mexer3RJDRM {
 public static void main(String args[])throws IOException{
 BufferedReader johndy = new BufferedReader(new InputStreamReader(System.in));
 String gender = " ";
 System.out.println("Enter Gender");
 gender = johndy.readLine();
 if(gender.equals("male"))
 System.out.print("Good morning Sir");

 else if(gender.equals("female")
 System.out.print("Goog morning Ma'am");

 else
 System.out.print("Invalid Character");
 }
 }
 
:help: ts, pdi mgtanung about PHP? cnu pdi mka2long ng code na pdi mg'upload ng file..sa web tpos yung file mgka2ron ng copy sa ibang folder kung san mo gus2 ilagay..tnx.. badly need lang po. :pray:
 
mga tol help nmn panu gumawa calendar sa html with bakground p post nmn sample..thnx sa makahelp sakin new lng sa html
 
mga tol help nmn panu gumawa calendar sa html with bakground p post nmn sample..thnx sa makahelp sakin new lng sa html


<TABLE BORDER=3 bgcolor="#00FFFF" CELLSPACING=3 CELLPADDING=3>
<TR>
<TD COLSPAN="7" ALIGN=center><B>December 2001</B></TD>
</TR>
<TR>
<TD COLSPAN="7" ALIGN=center><I>Another year comes to an end</I></TD>
</TR>
<TR>
<TD ALIGN=center>Sun</TD>
<TD ALIGN=center>Mon</TD>
<TD ALIGN=center>Tue</TD>
<TD ALIGN=center>Wed</TD>
<TD ALIGN=center>Thu</TD>
<TD ALIGN=center>Fri</TD>
<TD ALIGN=center>Sat</TD>
</TR>
<TR>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center>1</TD>
</TR>
<TR>
<TD ALIGN=center>2</TD>
<TD ALIGN=center>3</TD>
<TD ALIGN=center>4</TD>
<TD ALIGN=center>5</TD>
<TD ALIGN=center>6</TD>
<TD ALIGN=center>7</TD>
<TD ALIGN=center>8</TD>
</TR>
<TR>
<TD ALIGN=center>9</TD>
<TD ALIGN=center>10</TD>
<TD ALIGN=center>11</TD>
<TD ALIGN=center>12</TD>
<TD ALIGN=center>13</TD>
<TD ALIGN=center>14</TD>
<TD ALIGN=center>15</TD>
</TR>
<TR>
<TD ALIGN=center>16</TD>
<TD ALIGN=center>17</TD>
<TD ALIGN=center>18</TD>
<TD ALIGN=center>19</TD>
<TD ALIGN=center>20</TD>
<TD ALIGN=center>21</TD>
<TD ALIGN=center>22</TD>
</TR>
<TR>
<TD ALIGN=center>23</TD>
<TD ALIGN=center>24</TD>
<TD ALIGN=center>25</TD>
<TD ALIGN=center>26</TD>
<TD ALIGN=center>27</TD>
<TD ALIGN=center>28</TD>
<TD ALIGN=center>29</TD>
</TR>
<TR>
<TD ALIGN=center>30</TD>
<TD ALIGN=center>31</TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>

</TR>
</TABLE>

try mo boss..tpos ka na bhla sa design mo..try mo din d2 http://www.tizag.com/htmlT/ basics..pg'aralan mo..po
 
Hello po'.. ask ko lng po pnu po ba gumawa ng search button ung pagnagtype k khit two letters o topic lng masesearch'..

example po ung hahanapin ko ung Data Analysis and Design pro Data lng tnype q, but still lhat ng may Data na book lalabas'...




help po'... thanks :pray:
 
<TABLE BORDER=3 bgcolor="#00FFFF" CELLSPACING=3 CELLPADDING=3>
<TR>
<TD COLSPAN="7" ALIGN=center><B>December 2001</B></TD>
</TR>
<TR>
<TD COLSPAN="7" ALIGN=center><I>Another year comes to an end</I></TD>
</TR>
<TR>
<TD ALIGN=center>Sun</TD>
<TD ALIGN=center>Mon</TD>
<TD ALIGN=center>Tue</TD>
<TD ALIGN=center>Wed</TD>
<TD ALIGN=center>Thu</TD>
<TD ALIGN=center>Fri</TD>
<TD ALIGN=center>Sat</TD>
</TR>
<TR>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center>1</TD>
</TR>
<TR>
<TD ALIGN=center>2</TD>
<TD ALIGN=center>3</TD>
<TD ALIGN=center>4</TD>
<TD ALIGN=center>5</TD>
<TD ALIGN=center>6</TD>
<TD ALIGN=center>7</TD>
<TD ALIGN=center>8</TD>
</TR>
<TR>
<TD ALIGN=center>9</TD>
<TD ALIGN=center>10</TD>
<TD ALIGN=center>11</TD>
<TD ALIGN=center>12</TD>
<TD ALIGN=center>13</TD>
<TD ALIGN=center>14</TD>
<TD ALIGN=center>15</TD>
</TR>
<TR>
<TD ALIGN=center>16</TD>
<TD ALIGN=center>17</TD>
<TD ALIGN=center>18</TD>
<TD ALIGN=center>19</TD>
<TD ALIGN=center>20</TD>
<TD ALIGN=center>21</TD>
<TD ALIGN=center>22</TD>
</TR>
<TR>
<TD ALIGN=center>23</TD>
<TD ALIGN=center>24</TD>
<TD ALIGN=center>25</TD>
<TD ALIGN=center>26</TD>
<TD ALIGN=center>27</TD>
<TD ALIGN=center>28</TD>
<TD ALIGN=center>29</TD>
</TR>
<TR>
<TD ALIGN=center>30</TD>
<TD ALIGN=center>31</TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>
<TD ALIGN=center></TD>

</TR>
</TABLE>

try mo boss..tpos ka na bhla sa design mo..try mo din d2 http://www.tizag.com/htmlT/ basics..pg'aralan mo..po


----tol panu kung ga2win kong background picture panu ko ila2gay un?
 
----tol panu kung ga2win kong background picture panu ko ila2gay un?

<TABLE BORDER=3 background="file:///C|/Users/Public/Pictures/Sample Pictures/Chrysanthemum.jpg" CELLSPACING=3 CELLPADDING=3>

boss..palitan mo lng ung url ng image na ila2gay mo na galing sa computer mo..

hit :thanks: nman jan.. :lolcard:
 
<TABLE BORDER=3 background="file:///C|/Users/Public/Pictures/Sample Pictures/Chrysanthemum.jpg" CELLSPACING=3 CELLPADDING=3>

boss..palitan mo lng ung url ng image na ila2gay mo na galing sa computer mo..

hit :thanks: nman jan.. :lolcard:

thnkx tol nagawa ko na ge hit ko na:praise:
 
Boss patulong sa parallel ports kung pano mapapgana 12 wires kasi 8 lang nagagawa nmin eh.
 
Hi good pm po. Ano po ba pwedeng gawing system using Turbo C? Nabanggit kasi ng prof ko yung POS. Ano pa po kaya pede gawing system? Pede kaya inventory yung simple lang po na coding. Ano po marerecommend ninyo. Pang baby thesis lang po. Sana may makasagot agad thanks.
 
guys, i need ur help po sana sa java programming pra sa thesis nmin.. hindi po kasi ako marunong ng java programming eh.. ang project nmin ay ggwa ka ng application for cellphone na automatically mag sesend back siya ng sms dun sa caller or texter when u are on busy instances.. this application will work if it is set "ON". ung application nmin ay parang pinagsama na "Advanced Call Manager" and "Blackballer" application and meron pang mga imomodify ng konti.. sana po may makatulong po sakin.. thanks!
 
Hi good pm po. Ano po ba pwedeng gawing system using Turbo C? Nabanggit kasi ng prof ko yung POS. Ano pa po kaya pede gawing system? Pede kaya inventory yung simple lang po na coding. Ano po marerecommend ninyo. Pang baby thesis lang po. Sana may makasagot agad thanks.
Kahit ano naman pwede gawin dyan eh. Pwede ka nga gumawa dyan ng operating system basta kaya mo lang. So ibase mo ung gagawin mo sa alam mo.

guys, i need ur help po sana sa java programming pra sa thesis nmin.. hindi po kasi ako marunong ng java programming eh.. ang project nmin ay ggwa ka ng application for cellphone na automatically mag sesend back siya ng sms dun sa caller or texter when u are on busy instances.. this application will work if it is set "ON". ung application nmin ay parang pinagsama na "Advanced Call Manager" and "Blackballer" application and meron pang mga imomodify ng konti.. sana po may makatulong po sakin.. thanks!
Kung di ka marunong mag Java eh bakit yan ang propose thesis mo? Ikaw din mahihirapan nyan. :upset:
 
Back
Top Bottom