二级C语言-阶乘公式求职 摘要:解题思路:递归调用即可注意事项:参考代码:#include<stdio.h>double fact(int n);int main(){ int n; scanf("%d",&n); double s…… 题解列表 2021年10月14日 0 点赞 0 评论 384 浏览 评分:0.0
字符串的输入输出处理 摘要:解题思路:while (gets(str) != NULL)用来进行判断是否输入结束注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){…… 题解列表 2021年10月14日 0 点赞 0 评论 403 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a<b&&a<c) if…… 题解列表 2021年10月14日 0 点赞 0 评论 357 浏览 评分:0.0
1040: [编程入门]实数的打印 标题-题解(python) 摘要:解题思路:注意事项:参考代码:a = float(input())print('{:6.2f}'.format(a))print('{:6.2f} {:6.2f}'.f…… 题解列表 2021年10月14日 0 点赞 0 评论 455 浏览 评分:0.0
1044: [编程入门]三个字符串的排序-题解(python代码) 摘要:解题思路:注意事项:参考代码:l = []for i in range(3): l.append(input())l.sort()for i in l: print(i)…… 题解列表 2021年10月14日 0 点赞 0 评论 451 浏览 评分:0.0
堆栈的使用sgdfhjas 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "stdlib.h"#define MaxSize 100typedef int ElemType;typedef …… 题解列表 2021年10月15日 0 点赞 0 评论 377 浏览 评分:0.0
1097: 蛇行矩阵 摘要:解题思路:先寻找每一行的规律,然后暴力输出注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n][n]…… 题解列表 2021年10月15日 0 点赞 0 评论 340 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct student{ char id[10]; char name[20]; int …… 题解列表 2021年10月15日 0 点赞 0 评论 648 浏览 评分:0.0
Java实现(简单易懂,逆推公式) 摘要:package com.edu.hhxy;import java.util.Scanner;/** * @author five-five * @link https://www.dotcpp.com…… 题解列表 2021年10月15日 0 点赞 0 评论 556 浏览 评分:0.0
二级C语言-分段函数-题解(python) 摘要:解题思路:注意事项:参考代码:x = int(input())if x<1: y = xelif 1<=x<10: y = 2*x-1else: y = 3*x-11print("{…… 题解列表 2021年10月15日 0 点赞 0 评论 436 浏览 评分:0.0