心得体会

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了心得体会相关的知识,希望对你有一定的参考价值。

推荐书籍:
  1. 入门篇:《phpmysql Web开发(第四版)》
  2. 进阶篇:《深入PHP 面向对象、模式与实践》
  3. 钻研篇:《代码大全》《重构 改善既有代码的设计》《程序员修炼之道 从小工到专家》《人月神话》,其他:数据结构与算法、设计模式、安全、最佳实践。
 
笔试三题
1.如何判断质数
function check_zhishu($a) {
  for($i=2; $i < $a ; $i++) {
    if($a % $i == 0) {
      echo $a. ‘不是质数‘;
      exit;
    }
  }
  echo $num. ‘是质数‘;
}
check_ss(122);
 
2.This is an Apply eBay 变成 Siht si na Ylppa yAbe
$str1 = ‘This is an Apply eBay‘;
 
function restr($str) {
    $str1 = explode(‘ ‘, $str);
    $temp = $str2 = ‘‘;
    for ($i = 0; $i < count($str1); $i++) {
        if (strlen($str1[$i]) > 2) {
            if ($str1[$i] == ‘eBay‘) {
                $str2. = $temp.substr($str1[$i], 0, 1);
                $str2. = ucfirst(strrev(strtolower(substr($str1[$i], 1))));
            } else {
                $str2. = $temp.ucfirst(strrev(strtolower($str1[$i])));
            }
        } else {
            $str2. = $temp.strrev(strtolower($str1[$i]));
        }
        $temp = ‘ ‘;
    }
    return $str2;
}
echo restr($str1);
 
3.电商订单与商品的数据结构图

以上是关于心得体会的主要内容,如果未能解决你的问题,请参考以下文章

对计算机的心得体会

matlab 心得体会

C语言学完后的心得体会

心得体会???

构建之法—心得体会

CKA 考试心得