C 语言实例 – 计算一个数的 n 次方 2021年12月7日20:01:57C语言教程1 2021年12月7日 C 语言实例 - 计算一个数的 n 次方 计算一个数的 n 次方,例如: 23,其中 2 为基数,3 为指数。 实例 - 使用 while #include <stdio.h> int main() { int base, exponent; long long result = 1; printf("基数: "); scanf("%d", &base); printf("指数: "); scanf("%d", &exponent); while (exponent != 0) { result *= base; --exponent; } printf("结果:%lld", result); return 0; } 运行结果: 基数: 2 指数: 3 结果:8 实例 - 使用 pow() 函数 #include <stdio.h> #include <math.h> int main() { double base, exponent, result; printf("基数: "); scanf("%lf", &base); printf("指数: "); scanf("%lf", &exponent); // 计算结果 result = pow(base, exponent); printf("%.1lf^%.1lf = %.2lf", base, exponent, result); return 0; } 运行结果: 基数: 2 指数: 3 2.0^3.0 = 8.00 实例 - 递归 #include <stdio.h> int power(int n1, int n2); int main() { int base, powerRaised, result; printf("基数: "); scanf("%d",&base); printf("指数(正整数): "); scanf("%d",&powerRaised); result = power(base, powerRaised); printf("%d^%d = %d", base, powerRaised, result); return 0; } int power(int base, int powerRaised) { if (powerRaised != 0) return (base*power(base, powerRaised-1)); else return 1; } 历史上的今天12 月72020Windows必装软件IDM(优秀下载工具)v6.38.14 完美**版 点赞 登录收藏 https://www.gongshiku.com/html/202112/c-yuyanshili-jisuanyigeshude-n-cifang.html 复制链接 复制链接 运营不易, 感谢支持! 我的微信 我的微信公众号 我的微信公众号扫一扫 我的公众号
C语言教程 C 标准库 – C 标准库 - <time.h> 简介 time.h 头文件定义了四个变量类型、两个宏和各种操作日期和时间的函数。 库变量 下面是头文件 time.h 中定义的变量类型: ... 2021年12月7日1
C语言教程 C 标准库 – C 标准库 - <string.h> 简介 string .h 头文件定义了一个变量类型、一个宏和各种操作字符数组的函数。 库变量 下面是头文件 string.h 中定义的变量类型... 2021年12月7日评论
C语言教程 C 标准库 – C 标准库 - <stdlib.h> 简介 stdlib .h 头文件定义了四个变量类型、一些宏和各种通用工具函数。 库变量 下面是头文件 stdlib.h 中定义的变量类型: ... 2021年12月7日评论
C语言教程 C 标准库 – C 标准库 - <stdio.h> 简介 stdio .h 头文件定义了三个变量类型、一些宏和各种函数来执行输入和输出。 库变量 下面是头文件 stdio.h 中定义的变量类型: ... 2021年12月7日评论