希望出现的结果是:
输出两列,一列是质数,另一列是累加值。
如下:
2 2
3 5
5 10
7 17
9 26
……
5条回答 默认 最新
- _GX_ 2022-09-14 17:39关注
#include <stdio.h> // Returns 1 if x is a prime, otherwise returns 0. int is_prime(unsigned int x) { if (x < 2) return 0; for (int i = 2; i * i <= x; i++) { if (x % i == 0) return 0; } return 1; } // Restores the last calculated prime and sum from EEPROM. void restore(unsigned int *A, unsigned int *sum) { // ... } // Saves the calculated prime and sum to EEPROM for resuming the calculation // later. void save(unsigned int A, unsigned int sum) { // ... } // Shows LED for the specified period in ms. void showLed(unsigned int ms) { // ... } int main() { unsigned int A = 0, sum = 0, n = 0, i = 0; restore(&A, &sum); // Restore the last A and sum from EEPROM while (++i > 0) { if (is_prime(i)) { A = i; if (sum + i < sum) { printf("overflow, stop\n"); break; } sum += i; printf("%u %u\n", i, sum); if (++n % 10 == 0) showLed(2000); // Show LED for 2 seconds save(A, sum); // Save current A and sum to EEPROM } } return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 做个有关计算的小程序
- ¥15 MPI读取tif文件无法正常给各进程分配路径
- ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
- ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
- ¥15 setInterval 页面闪烁,怎么解决
- ¥15 如何让企业微信机器人实现消息汇总整合
- ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
- ¥15 如何用Python爬取各高校教师公开的教育和工作经历
- ¥15 TLE9879QXA40 电机驱动
- ¥20 对于工程问题的非线性数学模型进行线性化