数组——题解 3018: 末两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[2]={1,0}; int i,j,n; scanf("%d",&n); …… 题解列表 2022年12月31日 0 点赞 0 评论 544 浏览 评分:9.9
2976: 字符串中最长的连续出现的字符 摘要:解题思路:先定义一个数组输入字符串然后用for循环来断句然后使用for循环来判断下插下一个字符是否与前一个字符相等如果相等则计数如果不相等则退出重新计数最后来判断输出的技术最多的一项是什么然后又输出这…… 题解列表 2022年12月31日 0 点赞 0 评论 546 浏览 评分:9.9
2981: 二进制分类 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ //将1到1000的十进制转换为二进制 int a[1000]; int i,j; in…… 题解列表 2022年12月31日 0 点赞 0 评论 495 浏览 评分:9.9
巧用sort函数实现从大到小的排序输出!! 摘要:解题思路:用sort函数实现数组的从小到大排序,在逆序输出。使用sort函数需要导入头文件<algorithm>注意事项:参考代码:#include<iostream>using namespace …… 题解列表 2022年12月31日 0 点赞 0 评论 537 浏览 评分:9.9
Hello, World!的大小 摘要:##Hello, World!的大小 ```c #include int main() { char a[]="Hello, World!"; printf("%d",sizeof(a…… 题解列表 2023年01月01日 0 点赞 0 评论 2097 浏览 评分:9.9
题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void panduan(int n);int main(){ int n; scanf("%d",&n); pand…… 题解列表 2023年01月01日 0 点赞 0 评论 937 浏览 评分:9.9
编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:// [编程入门]完数的判断 #include<stdio.h> int fun(int n); void func(int x); int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 372 浏览 评分: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 评论 457 浏览 评分:9.9
[编程入门]自定义函数之整数处理--定位数组最小值和最大值(c语言) 摘要:解题思路:用循环找到数组里的最小值和最大值,然后进行交换。参考代码:#include <stdio.h> void input(int* a){ for(int i=0;i<10;i+…… 题解列表 2023年01月01日 0 点赞 0 评论 439 浏览 评分: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 评论 351 浏览 评分:9.9