|
|
|
รบกวนช่วยแนะนำโค้ดในการคำนวนเงินเดือนโดยหักจากภาษีหน่อยน่ะค่ะ |
|
|
|
|
|
|
|
ใช้ if else if ครับ
|
|
|
|
|
Date :
2012-07-30 15:36:38 |
By :
kooyarut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วใช้แบบไหนค่ะ ขอดูตัวอย่างโค๊ดได้ไหมค่ะ
|
|
|
|
|
Date :
2012-07-30 15:59:08 |
By :
อนุพล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$salary = "5000";
if($salary <= 10000)
{
$tax = $salary *(4/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=20000)
{
$tax = $salary *(5/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=30000)
{
$tax = $salary *(7/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}else{
$tax = $salary *(10/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}
?>
|
|
|
|
|
Date :
2012-07-30 16:03:47 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test1.php
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="test2.php">
ชื่อ-สกุล
<input name="name" type="text" id="name" value="<?=$_POST['name']?>" />
<p>ชื่อบริษัทที่ทำงาน
<input name="office" type="text" id="office" value="<?=$_POST['office']?>" />
</p>
<p>เงินเดือน
<input name="salary" type="text" id="salary" value="<?=$_POST['salary']?>" />
</p>
<p>
<input type="submit" name="submit" id="submit" value="คำนวณ" />
</p>
<p> </p>
</form>
</body>
</html>
อันนี้หน้าแรกที่เราต้องกรอกข้อมูลลงไป ช่วยดูให้หน่อยนะค่ะว่าเขียนถูกหรือเปล่า
|
|
|
|
|
Date :
2012-07-30 19:33:47 |
By :
อนุพล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test2.php
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title>Untitled Document</title>
</head>
<body>
<?
if($_POST['submit'])
{
$name = $_POST['name'];
$office= $_POST['office'];
$salary = $_POST['salary'];
?>
<?php
$salary = "5000";
if($salary <= 10000)
{
$tax = $salary *(4/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=20000)
{
$tax = $salary *(5/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=30000)
{
$tax = $salary *(7/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}else{
$tax = $salary *(10/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}
}
?>
</body>
</html>
อันนี้หน้าที่ 2 นะค่ะ คือว่าข้อมูลที่เรากรอกไปในหน้าtest1.php.ต้องโชว์ในหน้านี้ด้วยอ่ะค่ะ สิ่งที่ต้องโชว์คือ
ชื่อบริษัท:
ชื่อสกุล:
เงินเดือนที่ได้รับ:
เงินที่ต้องเสียภาษี:
เหลือเงิน:
ช่วยดูให้หน่อยนะค่ะว่าต้องเขียนเพิ่มยังงัยหรือว่าทำผิดตรงไหนบ้าง
|
|
|
|
|
Date :
2012-07-30 19:37:45 |
By :
อนุพล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้า test2.php
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title>Untitled Document</title>
</head>
<body>
<?
if($_POST['submit'])
{
$name = $_POST['name'];
$office= $_POST['office'];
$salary = $_POST['salary'];
//คุณก็ echo ค่าที่ต้องการออกมา
echo $name;
echo $office;
echo $salary ;
?>
<?php
$salary = "5000"; //อันนี้ตัวอย่างผมสมมุติตัวแปร คุณจะทำไงลองนึกดูนะครับ
if($salary <= 10000)
{
$tax = $salary *(4/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=20000)
{
$tax = $salary *(5/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}elseif( $salary <=30000)
{
$tax = $salary *(7/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}else{
$tax = $salary *(10/100) ;
echo "คุณมีเงินเดือน :: ".$salary." บาท ต้องเสียภาษี :: ".$tax." บาท";
}
}
?>
</body>
</html>
|
|
|
|
|
Date :
2012-07-31 14:11:18 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอถามหน่อยครับ ถ้าเราจะนำค่าที่อยู่ในตัวแปร เงินเดือนหลังจากหักภาษีแล้วไปบวกกับเงินโบนัส ต้องทำอย่างไรครับ
พอดีติดเรื่องนี้อยู่
import java.util.Scanner;
class Ex16
{
public static void main(String args[])
{
//String a[]=new String[5];
String a,b,c,d;
int e,f;
Scanner input=new Scanner(System.in);
//for(int i=0;i<a.length;i++)
System.out.print("Employee ID \t\t: ");
a=input.nextLine();
System.out.print("Employee Name \t\t: ");
b=input.nextLine();
System.out.print("Employee Address \t: ");
c=input.nextLine();
System.out.print("Employee Phone \t\t: ");
d=input.nextLine();
System.out.print("Salary \t\t\t: ");
e=input.nextInt();
System.out.print("Bonus \t\t\t: ");
f=input.nextInt();
System.out.println("**********************SHOW DATA********************");
System.out.println("Employee ID : "+a);
System.out.println("Employee Name : "+b);
System.out.println("Employee Address : "+c);
System.out.println("Employee Phone : "+d);
System.out.println("Employee Salary : "+e);
System.out.println("Employee Bonus : "+f);
//deduct=e-Vat;
//int total;
//total=(e-Vat);
//int Vat[]=new int Vat[3];
//for(int i=0;i<Vat.length;i++)
if(e>=30000)
{
int Vat=e-(e*5)/100;
System.out.println("Salary>30000 Deduct Vat 5% \t: " +Vat);
}
if(e>=20000 && e<30000)
{
int Vat=e-(e*4)/100;
System.out.println("Salary 20000-29999 Deduct Vat 4% \t: " +Vat);
}
if(e>=10000 && e<20000)
{
int Vat=e-(e*3)/100;
System.out.println("Salary 10000-19999 Deduct Vat 3% \t: " +Vat);
}
if(e<10000)
{
int Vat=e-(e*1)/100;
System.out.println("Salary<10000 Deduct Vat 1% \t: " +Vat);
}
//for(int total=Vat);
//total=Vat;
//int sum=0
//for(int i=0;i<Vat.length;i++)
//sum=sum+Vat;
System.out.println("Total Salary \t\t: " +(e+f));
}
}
|
|
|
|
|
Date :
2012-09-17 11:55:49 |
By :
win3805 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตั้งกระทู้ใหม่ได้ครับ
|
|
|
|
|
Date :
2012-09-17 12:28:02 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็นโปรแกรม Notepad++ language html ต้องทำยังหรอครับ
|
|
|
|
|
Date :
2015-02-19 10:08:47 |
By :
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File > New > HTML Page
แต่ไม่เข้าใจ คุณจะไปขุดกระทู้ มาถามทำไม...
|
|
|
|
|
Date :
2015-02-19 12:42:12 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-09-01 22:10:43 |
By :
Patchara Tithamma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ยยยย บทเรียนมาอีกแล้วว
แถมขุดมากจาก ปี 2012
|
|
|
|
|
Date :
2016-09-02 08:51:35 |
By :
คนมีเสน่ห์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอจะเข้าใจ่วาขี้เกียจสมัคร แต่ช่วยสมัครเถอะครับ แล้วตั้งกระทู้ใหม่ดีกว่า
ของเก่าไว้อ่านไว้ศึกษาได้ครับ แต่อย่าทำให้เป็นกระทู้ใหม่เลย
บางอย่างมันเป็นภาษาที่ตายไปแล้ว เวอร์ชั่นเก่าไปบ้าง ก็อย่าเอามาให้คนใหม่ๆ อ่านเลยครับ
เอาของใหม่น่าจะดีกว่าครับ แต่ของเก่าก็มีประโยชน์นะครับถ้าจะศึกษาเรื่องไวยกรณ์ วิธีคิด
แต่เรื่อง function มันจะใช้ไม่ได้
|
|
|
|
|
Date :
2016-09-02 09:55:52 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|