2981: 二进制分类 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ //将1到1000的十进制转换为二进制 int a[1000]; int i,j; in…… 题解列表 2022年12月31日 0 点赞 0 评论 392 浏览 评分:9.9
巧用sort函数实现从大到小的排序输出!! 摘要:解题思路:用sort函数实现数组的从小到大排序,在逆序输出。使用sort函数需要导入头文件<algorithm>注意事项:参考代码:#include<iostream>using namespace …… 题解列表 2022年12月31日 0 点赞 0 评论 355 浏览 评分:9.9
Hello, World!的大小 摘要:##Hello, World!的大小 ```c #include int main() { char a[]="Hello, World!"; printf("%d",sizeof(a…… 题解列表 2023年01月01日 0 点赞 0 评论 1972 浏览 评分:9.9
题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void panduan(int n);int main(){ int n; scanf("%d",&n); pand…… 题解列表 2023年01月01日 0 点赞 0 评论 790 浏览 评分:9.9
编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:// [编程入门]完数的判断 #include<stdio.h> int fun(int n); void func(int x); int main() {…… 题解列表 2023年01月01日 0 点赞 0 评论 209 浏览 评分:9.9
编写题解 2830: 数字统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,x,i,count=0,t; scanf("%d %d",&x,&n); …… 题解列表 2023年01月01日 0 点赞 0 评论 341 浏览 评分:9.9
[编程入门]自定义函数之整数处理--定位数组最小值和最大值(c语言) 摘要:解题思路:用循环找到数组里的最小值和最大值,然后进行交换。参考代码:#include <stdio.h> void input(int* a){ for(int i=0;i<10;i+…… 题解列表 2023年01月01日 0 点赞 0 评论 209 浏览 评分:9.9
[编程入门]自定义函数之数字后移-题解 (一眼看懂) -c语言代码 摘要:解题思路:a[10] = {1,2,3,4,5,6,7,8,9,10};b[10];通过输入的m判断需要移动几位数字用10-m找到需要移动的数字,然后存入b数组b[10] = {9,10};再把a[0…… 题解列表 2023年01月01日 0 点赞 0 评论 225 浏览 评分:9.9
c语言超简单解答 摘要:解题思路:注意事项:参考代码:int a=1,b=4,c=100,d; scanf("%d%d%d",&a,&b,&c); d=a+(b-a)*(c-1); printf("%d",d); …… 题解列表 2023年01月01日 0 点赞 0 评论 649 浏览 评分:9.9
[编程入门]结构体之时间设计--傻瓜式写法(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct date{ int year; int month; int day; }; in…… 题解列表 2023年01月01日 0 点赞 0 评论 184 浏览 评分:9.9