1023: [编程入门]选择排序 摘要:```c #include const int NUM = 10; int main() { int i = 0,min=0,min_index=0; int a[11]; …… 题解列表 2022年11月14日 0 点赞 0 评论 262 浏览 评分:0.0
笨小猴(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; int i,j;; int w; int b[200]={0}…… 题解列表 2022年11月14日 0 点赞 0 评论 489 浏览 评分:9.9
题解 1051: [编程入门]结构体之成绩统计2 1050基础上修改 摘要: #include //typedef struct Student { char num[16]; char name[32…… 题解列表 2022年11月14日 0 点赞 0 评论 198 浏览 评分:0.0
用for循环解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(void){ int a, b, sum=0; scanf("%d",&a…… 题解列表 2022年11月14日 0 点赞 0 评论 326 浏览 评分:9.9
编写题解 1395: 倒数第二 Python 摘要:解题思路:sort函数注意事项:很简单好吧,不需要注意参考代码:C=int(input())while C!=0: n=int(input()) if n>=2 and n<=10: …… 题解列表 2022年11月14日 0 点赞 9 评论 300 浏览 评分:8.4
题解1096:Minesweeper 摘要:# 1096: Minesweeper ## 知识点 ### 知识点1:无限循环输入,知道输入两个0的时候结束 我这里使用的方法是,用`times`变量进行计数,使用`for`循环。…… 题解列表 2022年11月14日 0 点赞 0 评论 247 浏览 评分:9.9
2757: 浮点数向零舍入(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; int b; scanf("%f",&a); b=a; printf("%d\n",b); …… 题解列表 2022年11月14日 0 点赞 1 评论 1630 浏览 评分:9.9
2755: 类型转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("D C\n"); return 0;}…… 题解列表 2022年11月14日 0 点赞 0 评论 1463 浏览 评分:6.0
杨辉三角, 三种方法: 组合数 || 递归 || 迭代,都很简单 摘要: #include long long Fun(int n, int m)// 组合数,注意大组合数 { if (n …… 题解列表 2022年11月14日 0 点赞 0 评论 947 浏览 评分:9.9
题解 2803: 整数的个数(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,k,i,j=0,y=0,z=0; scanf("%d",&k); for(i=1;i<=k;i++)…… 题解列表 2022年11月14日 0 点赞 0 评论 495 浏览 评分:8.7