P1000......21888545 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,sum; scanf("%d%d",&a,&b); sum=a+b; …… 题解列表 2021年11月14日 0 点赞 0 评论 230 浏览 评分:2.0
三角形判断(留着以后回头看) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,max,min,mid; while(scanf("%d%d%d",&a,&…… 题解列表 2021年11月14日 0 点赞 0 评论 335 浏览 评分:2.0
以后可以回头看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h>int main(){ double x,y,d; while(scanf("%lf%lf"…… 题解列表 2021年11月14日 0 点赞 0 评论 266 浏览 评分:2.0
链表之报数问题 python解法 摘要:解题思路:注意事项:参考代码:n = int(input())ls = [0] * nj = 1; p = 0for i in range(n-1):#让9个人出局 while j < 3: …… 题解列表 2021年11月15日 0 点赞 0 评论 335 浏览 评分:2.0
信息学奥赛一本通T1252-走迷宫-数组标记地图题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b)){ int c[…… 题解列表 2021年11月16日 0 点赞 0 评论 513 浏览 评分:2.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项: #include <stdio.h>#define M 10//插入排序void insertSort(int arry[], int len){ int i; …… 题解列表 2021年11月19日 0 点赞 0 评论 252 浏览 评分:2.0
拆分位数 (C语言代码)字符倒着输出 摘要:解题思路:注意事项:参考代码: printf("%c %c %c", getchar(), getchar(), getchar());…… 题解列表 2021年11月20日 0 点赞 0 评论 375 浏览 评分:2.0
有规律的数列求和 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc=new Scanner(System.in); int num…… 题解列表 2021年11月23日 0 点赞 0 评论 378 浏览 评分:2.0
编写题解 1146: C语言训练-舍罕王的失算 摘要:解题思路:循环相加即可,注意数值范围注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(…… 题解列表 2021年11月23日 0 点赞 0 评论 543 浏览 评分:2.0
去除空格c语言解法 摘要:解题思路:把空格的那个位置置0,输出的时候输出非0即可注意事项:输入的时候用gets()参考代码:#include <stdio.h>#include <string.h> int main(){ch…… 题解列表 2021年11月26日 0 点赞 0 评论 403 浏览 评分:2.0