题解 1118: Tom数 摘要:解题思路:使用 int的话只能对一半,使用数组来存取数才可以存下去很大的数注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ ch…… 题解列表 2021年10月15日 0 点赞 0 评论 319 浏览 评分:0.0
题解 1116: IP判断 摘要:解题思路:巧用scanf函数的返回值来实现循环注意事项:取反是当返回值为-1的时候取反为1,循环结束参考代码:#include<stdio.h>int main(){ int a,b,c,d,k; c…… 题解列表 2021年10月15日 0 点赞 0 评论 284 浏览 评分: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 评论 240 浏览 评分:0.0
水仙花数判断-题解(python代码) 摘要:参考代码:for i in range(100,1000): #遍历所有三位数 &nb 题解列表 2021年10月15日 0 点赞 0 评论 547 浏览 评分:8.3
Java实现(简单易懂,逆推公式) 摘要:package com.edu.hhxy;import java.util.Scanner;/** * @author five-five * @link https://www.dotcpp.com…… 题解列表 2021年10月15日 0 点赞 0 评论 354 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct student{ char id[10]; char name[20]; int …… 题解列表 2021年10月15日 0 点赞 0 评论 285 浏览 评分:0.0
1097: 蛇行矩阵 摘要:解题思路:先寻找每一行的规律,然后暴力输出注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n][n]…… 题解列表 2021年10月15日 0 点赞 0 评论 174 浏览 评分:0.0
编写题解 2629: 数学题(快速幂解法) 摘要:typedef long long ll; #include <iostream> using namespace std; ll fast_pwoer(ll base,ll index,ll …… 题解列表 2021年10月15日 0 点赞 0 评论 633 浏览 评分:9.9
堆栈的使用sgdfhjas 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "stdlib.h"#define MaxSize 100typedef int ElemType;typedef …… 题解列表 2021年10月15日 0 点赞 0 评论 208 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数--小白的题解(C语言代码) 摘要:解题思路:纯小白,入坑几个星期(有错误请谅解) 一个非常简单容易理解的方法.先接受两个数(当然是废话)然后判断接受的两个数大小关系为什么要判断?因为最大公约数小于大的那个数以此来限制接下来for循环的…… 题解列表 2021年10月14日 0 点赞 0 评论 310 浏览 评分:9.9