头疼的工人-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int x,a[25],i,t=1,num,n=0; scanf("%d",&x); num=x; wh…… 题解列表 2020年09月02日 0 点赞 0 评论 651 浏览 评分:9.9
1.头疼的工人 (C++代码) 摘要:解题思路:除2取余注意事项:超过100万的数,增加数组的大小。参考代码:#include<iostream>#include<cstdio>using namespace std;int a[20],…… 题解列表 2019年04月09日 1 点赞 0 评论 445 浏览 评分:2.0
1.头疼的工人-题解(C语言代码)懒人写法 摘要: void main() { int a[200] = { 0 }, n, temp = 1, i = 0; while (scanf("%d", &n) !=…… 题解列表 2019年11月14日 0 点赞 0 评论 746 浏览 评分:2.0
头疼的工人(实际上就是二进制转换) 摘要:解题思路:创建一个数组存储x转化的二进制,然后好办了注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x; sc…… 题解列表 2023年12月01日 0 点赞 0 评论 72 浏览 评分:0.0
研究了好久,也参考了别的代码,这个是最容易懂得!有注释! 摘要:解题思路:注意事项:参考代码:int main(){ int x;//荧幕上的led数字 int i; int an=1; int a[200];//存放序列值 whil…… 题解列表 2023年11月28日 0 点赞 0 评论 101 浏览 评分:0.0
编写题解 2010: 头疼的工人(特别简单的思路) 摘要:编写题解 2010: 头疼的工人#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<math.h>int main(){ int…… 题解列表 2024年02月13日 0 点赞 0 评论 65 浏览 评分:0.0
头疼的工人-题解(C语言代码) 摘要:解题思路:先转化为二进制数再用pow函数求得答案注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int x,a[25],i,n=0…… 题解列表 2020年09月02日 0 点赞 0 评论 331 浏览 评分:0.0