鱼C论坛

 找回密码
 立即注册
分享 字符串transpose,利用getchar来接收单个字符并存储到数组,一定要自己加‘\0’
Maliaty 2024-12-3 17:36
#include stdio.h #define MAX 20 void transpose ( char str , int length ) { int temp ; for ( int j = 0 ; j length / 2 ; j ++ ) { temp = str ; str ...
1 个评论
分享 定义二维数组函数,交换时避免重复交换
Maliaty 2024-12-3 16:59
#include stdio.h int main () { void change ( int str ); int str ; for ( int i = 0 ; i 3 ; i ++) { for ( int j = 0 ; j 3 ; j ++)   ...
0 个评论
分享 函数调用指针与直接调用数在主函数的区别
Maliaty 2024-12-3 15:02
#include stdio.h void swap ( int x , int y ); void swap ( int x , int y ) { int temp ; printf ( "in swap, 转换前x= %d , y= %d \n " , x , y ); temp = x ; x = y ; y = temp ; printf ...
2 个评论
分享 基本类型布尔值的检查
hayeee 2024-12-2 13:54
检查某个值是否被归类为布尔基元。返回 true 或 false 。 基本类型中的布尔值为true或者false。 ------------------------------------------------- function booWho(bool) { return typeof bool === "boolean"; } // test here booWho(null);
0 个评论
分享 按参数过滤数组
hayeee 2024-12-2 13:06
创建一个函数,查看数组 arr 并返回其中第一个通过“真值测试”的元素。这意味着,给定一个元素,如果 为, x 则通过“真值测试” 。如果没有元素通过测试,则返回 。 func(x) true undefined ---------------------------------------------- function findElement ( arr , func ...
0 个评论
分享 孪生素数
Maliaty 2024-11-29 11:12
#include stdio.h #define MAX 100 #include stdbool.h bool prime ( int n ); bool prime ( n ) { int i ; if ( n == 1 ) return true ; if ( n == 2 ) return false ; for ( i = 2 ; i ...
2 个评论
分享 哥德巴赫猜想
Maliaty 2024-11-28 18:04
#include stdio.h #include stdbool.h // 判断是否为素数 bool is_prime(int num) { if (num = 1) return false; for (int i = 2; i * i = num; i++) { if (num % i == 0) return false; } return tru ...
2 个评论
分享 利用辗转相除法求最大公约数
Maliaty 2024-11-26 17:57
#include stdio.h int main () { int hcf ( int , int ); int lcd ( int , int ); int x , y , c ; scanf ( " %d%d " , x , y ); c = hcf ( x , y ); printf ( "hcf= %d \n " ...
0 个评论
分享 截斷風琴
hayeee 2024-11-26 13:45
如果字符串长度超过给定的最大字符串长度(第二个参数),则截断该字符串(第一个参数)。返回带有 ... 结尾的截断字符串 ------------------------------------------------ function truncateString ( str , num ){ if ( str . length num ){ & ...
0 个评论
分享 无题
yulin3192 2024-11-26 13:23
无题
兜兜转转,一地鸡毛。
3 次阅读|0 个评论

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-4 05:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

返回顶部