• 笔记


    最小公倍数,最大公约数

    cout如何输出小数点后两位

    https:blog.csdn.net/edricbjtu/article/details/41082597

    关于getline和cin的用法http:c.biancheng.net/view/1345.html

    快捷键https:baike.baidu.com/item/快捷键/1875219?fr=aladdin

    关于遍历https:zhidao.baidu.com/question/538408136.html

    s[i]-'0'的意义https:zhidao.baidu.com/question/398887450.html

    CTRL+Z是cmd下的停止运行,使用循环时需要停止就需要用到

    Devc++如何支持c++11工具-编译选项:勾选编译时加入以下命令:-std=c++11

    黑框右键最上面的框框就能进行粘贴

    四舍五入的实现方法https:blog.csdn.net/xdz78/article/details/45080867

    String类fing函数深入了解一下(string::npos的含义) https:www.cnblogs.com/minglou/p/8832294.html

    243错误https:zhidao.baidu.com/question/1926505892060582027.html

    undefined reference to `WinMain'错误原因https:blog.csdn.net/qq_42635159/article/details/88360606

    cout<<" "与cout<<' '有什么区别?各自代表的意义是什么?https:zhidao.baidu.com/question/335530422.html

    c++ abs()干什么用的? https:zhidao.baidu.com/question/424425966.html

    string类的at函数https:blog.csdn.net/qq_42232118/article/details/81776175

    c语言中!=EOF是什么意思https:zhidao.baidu.com/question/332646143.html?sort=11&rn=5&pn=5#wgt-answers

    C++ isalpha、isalnum、islower、isupper用法https:blog.csdn.net/weixin_41162823/article/details/80172379

    变量类型用括号括起来是什么意思,起什么作用https:www.arduino.cn/thread-17490-1-1.html

    c语言中fabs()是什么意思 https:zhidao.baidu.com/question/374243420.html

    归并排序https:www.jianshu.com/p/33cffa1ce613

    归并排序代码解释(temp[i++] = arr[p1] <= arr[p2] ? arr[p1++] : arr[p2++];)

    最大公约数gcdhttps:blog.csdn.net/a13579b2468c/article/details/82020371&&https:blog.csdn.net/qq_36122764/article/details/82354968

    异或:如果a、b两个值不相同,则异或结果为1。如果a、b两个值相同,异或结果为0

    c语言运算符号https:baike.baidu.com/item/c语言运算符号/1349432?fr=aladdin

    判断素数的函数bool isprime(int a){

           for(int i=2;i*i<=a;i++)

           if(a%i==0) return false;

           return true;

    }

  • 相关阅读:
    GO学习-(17) Go语言基础之反射
    Go语言基础之time包
    Go语言标准库log介绍
    GO学习-(16) Go语言基础之文件操作
    GO学习-(15) Go语言基础之包
    GO学习-(14) Go语言基础之接口
    五种开源API网关实现组件对比
    Spring Junit4 Test
    Java泛型
    SQL 基本(Head First)
  • 原文地址:https://www.cnblogs.com/askyfullofstars/p/12238919.html
Copyright © 2020-2023  润新知