椰程智库 本次搜索耗时 0.040 秒,为您找到 229 个相关结果.
  • 空白文档

    792 2024-11-10 《bro的旅行》
    动物园攻略: 导游图 友情链接:江苏省科普场馆协会 版权所有:南京市红山森林动物园备案号:苏ICP备2021053572号电话:025-85620178地址:南京市和燕路168号 欢迎光临本站,您是第26访问者! 预订信息 请关注微信公众号“南京市红山森林动物园”,点击下方菜单栏,进入游园服务,在线购票即可。 开园时间 红山森林动物园全年无休,每日开...
  • 第五节 数制转换

    计算机进制与转换 一、常见的进制 二、为什么计算机使用二进制? 三、进制转换 1. 其他进制转十进制(按权展开) 2. 十进制转其他进制 3. 二进制与八进制、十六进制的转换 四、小结 计算机进制与转换 一、常见的进制 十进制(Decimal) : 基数为10,使用0~9十个数字。 示例:123.45 = 1×10² + 2×10...
  • 阅读程序

    #include < bits / stdc ++. h > using namespace std ; const int maxn = 50 ; void getnext ( char str []){ int l = strlen ( str ), i , j , k , temp ; k =...
  • 数组排序

    767 2025-01-14 《2025寒假集训》
    数组求大小: 静态排序 数组求大小: int size = sizeof(arr) / sizeof(arr[0]); 静态排序 #include <iostream> #include <algorithm> using namespace std ; // SymoChan <hnai@qq.com> ...
  • 空白文档

    输入输出那些事 2 3 4课堂练习三 (结束符也符合容器类型判断) 5 6 7 输入输出那些事 cin cout scanf () printf () 格式: cin >> cout << 慢(关闭同步流) ios :: sync_with_stdio ( fals...
  • 一本通第1章顺序结构

    复习 变量定义 cout输出 第5课 cin输入 99 888 789 复习 变量定义 int a ; int b ; a = 3 ; int c = 10 ; //等效于: int c ; c = 10 ; cout输出 int pi = 3 ; cout << p...
  • 第五节

    搜索算法 搜索算法 #include < bits / stdc ++. h > using namespace std ; const int SIZE = 105 ; int arr [ SIZE ] = { 0 , 11 , 22 , 33 , 44 , 55 , 66 , 77 , 88 , 99 };...
  • 通用函数

    729 2025-10-25 《csp专题2025》
    #include < bits / stdc ++. h > using namespace std ; // 求素数(质数) bool is_prime ( int n ){ if ( n < 2 ) return false ; // 1000*1000 = 100000000; ...
  • CSP题解

    691 2025-10-25 《C++CSP题解》
    素数回文数的个数[T1408] 素数回文数的个数[T1408] #include < bits / stdc ++. h > using namespace std ; bool is_ss ( int n ){ if ( n < 2 ){ return false ; }...
  • 空白文档

    676 2024-11-10 《好六的C++》
    #include <iostream> using namespace std ; int main (){ int n , ge , shi , bai , he ; cout << "请输入一个三位数:" ; cin >> n ; ge = n % 10 ; s...