1009普通解题看看吧 摘要:解题思路:注意事项:注意把整型转换为字符串和l - 1就行了。参考代码:#include<stdio.h>#include<string.h>int main (){ int b; char a[10…… 题解列表 2024年12月01日 1 点赞 0 评论 1467 浏览 评分:10.0
话费计算 c语言超简单 摘要:解题思路:如下注意事项:记得结果是浮点形式输出,并保留1位小数参考代码:#include<stdio.h>int main(){ float sum; int min; sca…… 题解列表 2024年12月01日 0 点赞 0 评论 179 浏览 评分:0.0
[编程入门]链表合并 链表是什么? 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个结构体sss,包含两个整数成员x和y struct sss{…… 题解列表 2024年12月01日 1 点赞 0 评论 389 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): b=input().split() print(','.join(b))…… 题解列表 2024年12月01日 0 点赞 0 评论 576 浏览 评分:6.0
通俗易懂,简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,i,j,k; scanf("%d %d %c %d",&a,&b,&c,&d…… 题解列表 2024年12月01日 0 点赞 0 评论 156 浏览 评分:0.0
二叉树遍历(flist) 递归 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义两个字符串变量 string s1, s2; void kkk…… 题解列表 2024年12月01日 0 点赞 0 评论 134 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{ static String date; static String date1; …… 题解列表 2024年12月01日 0 点赞 0 评论 329 浏览 评分:9.9
新人小白仅供参考 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int N; struct f{ char num[10]; char name[10]; …… 题解列表 2024年12月01日 1 点赞 0 评论 398 浏览 评分:2.0
拆分位数《三位数》 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; cout<<n%10<…… 题解列表 2024年12月01日 0 点赞 0 评论 538 浏览 评分:0.0
2146: 信息学奥赛一本通T1317-组合的输出 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; …… 题解列表 2024年12月01日 0 点赞 0 评论 401 浏览 评分:9.9