1.實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定,
輸入9,輸出99口訣表,輸入12,輸出1212的乘法口訣表。
//列印任意乘法口訣表
#define _crt_secure_no_warnings
#include#includevoid chengfakoujie(int x)
printf("\n"); }}
int main()
return 0;
system("pause");
}
2.使用函式實現兩個數的交換。
#define _crt_secure_no_warnings
#include#includevoid swap(int *x,int *y)
int main()
3.實現乙個函式判斷year是不是潤年。
#define _crt_secure_no_warnings
#include#includeint leapyear(int x)
return 0;
}int main()
4.建立乙個陣列,
實現函式init()初始化陣列、
實現empty()清空陣列、
實現reverse()函式完成陣列元素的逆置。
要求:自己設計函式的引數,返回值。
#include#include#includevoid init(int arr, int size)
}void empty(int arr, int size)
void reverse(int arr, int size)
}void print(int arr, int size)
printf("\n");
}int main()
5.實現乙個函式,判斷乙個數是不是素數。
#define _crt_secure_no_warnings
#include#includevoid prime(int x)
} if (y == x)
else
}int main()
else if (a <= 1)
else
return 0;
system("pause");
}
玩轉C語言(遞迴)
1.遞迴和非遞迴分別實現求第n個斐波那契數。define crt secure no warnings include includeint fib int n else int main 斐波那契數列 未遞迴 define crt secure no warnings include includ...
C語言函式1
維基百科對函式的定義為 子程式 c語言中函式的分類 庫函式自定義函式 c語言常用庫函式 庫函式的查詢工具 自定義函式和庫函式一樣,有函式名,返回值型別和函式引數。不同點是我們可以自己進行設計。函式的組成 ret type fun name para1,ret type 返回型別 fun name 函...
c 語言呼叫純彙編函式 1
原始碼位址 mainprog.c an example of calling an assembly function這裡用的是 professional assembly language 原始碼 我的環境 gcc version 7.2.0 ubuntu 7.2.0 8ubuntu3 我改了原始...