BIG
<?php
/////////////////////////////////////////////////////////////////////////
//
// @ PHP 문법 간단 예제
//
// @ 1 ~ 10 까지의 합
//
/////////////////////////////////////////////////////////////////////////
$sum = 0;
for($loopCnt = 0; 10 >= $loopCnt; $loopCnt++)
{
$sum = $sum + $loopCnt;
}// end for
echo "1 ~ 10 까지 합 : ".$sum;
/////////////////////////////////////////////////////////////////////////
?>
LIST
'!!...PHP > !!...SAMPLE' 카테고리의 다른 글
[PHP]07_퀵정렬( quick sort ) (0) | 2022.04.03 |
---|---|
[PHP]06_버블정렬( bubble sort ) (0) | 2022.04.03 |
[PHP]04_문자열추출 (0) | 2022.04.03 |
[PHP]03 달력( Calendar ) (0) | 2022.04.03 |
[PHP]02 - 1~100 까지 소수 구하기( Find decimals from 1 to 100 ) (0) | 2022.04.03 |