[C语言]迭代法——调用函数求解 摘要:解题思路:被调函数中进行平方根的求解,在主调函数中输出,使代码更加清晰,增加可读性注意事项:注意循环的判断条件是>=不要忘了等号哦宝宝们参考代码:#include <stdio.h>float fun…… 题解列表 2024年11月25日 0 点赞 0 评论 93 浏览 评分:9.9
字符串正反接 摘要:解题思路:注意事项:参考#include <stdio.h>#include <string.h>int main(){ char a[101]; int i, j; // 使用fg…… 题解列表 2024年11月25日 1 点赞 0 评论 110 浏览 评分:10.0
数单词?数空格! 摘要:解题思路:空格的格数加一就是单词数注意事项:gets危险 所以用getline fgets也行参考代码:#include <iostream>using namespace std;int main(…… 题解列表 2024年11月25日 1 点赞 0 评论 68 浏览 评分:0.0
状态机模型DP #3067: 大盗阿福(C++) 摘要:# 大盗阿福 N家店铺 同时偷两家报警系统会启动 不惊动警察的情况下,最多可以得到多少现金 **状态 :** 对于当前店铺 [偷 | 不偷] **状态定义 :** f[i…… 题解列表 2024年11月25日 0 点赞 0 评论 58 浏览 评分:0.0
暴力枚举 #3209: 蓝桥杯2024年第十五届省赛真题-好数 摘要:``` #define _CRT_SECURE_NO_WARNINGS 1 #include #include #include #include #include #include …… 题解列表 2024年11月25日 1 点赞 0 评论 153 浏览 评分:8.0
报数问题 C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(int a[],int n){int m=0,j=n,i;for(i=0;n-m>1;i++) {if((i+1)%3=…… 题解列表 2024年11月25日 0 点赞 0 评论 160 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(c语言代码)附解 思路简单 摘要:#include<stdio.h> struct days{//定义结构体 int year; int month; int day; }p1; int main(){ sca…… 题解列表 2024年11月24日 2 点赞 0 评论 393 浏览 评分:10.0
表达式括号匹配(stack),来看看吧,不用栈写法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个字符串变量ch,用于存储输入的字符串 string ch; …… 题解列表 2024年11月24日 0 点赞 0 评论 81 浏览 评分:0.0
后缀表达式的值!? 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个栈,用于存储操作数 stack<long long> st;…… 题解列表 2024年11月24日 0 点赞 0 评论 44 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要: #include using namespace std; int main() { int i=0,j=0; int N,n;…… 题解列表 2024年11月24日 0 点赞 0 评论 53 浏览 评分:0.0