cxbatman
cxbatman
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
cxbatman的博客
全部文章
(共3篇)
题解 | #计算一元二次方程#3个+0-0要改
+0和-0不一样的情况要改3处, // // Created by Administrator on 2023/4/5. // #include <cstdio> #include <cmath> void equation(float a, float b, float ...
C++
C
2023-04-05
0
292
题解 | #找位置#虽然没大神那么牛,但是应该思路清晰
链接想好几个难点1 输入了几个字符=>写个循环得出2 怎么防止重复访问=>用变量visit记录,在输出的时候改变visit链接3 怎么找相同的=>用两个循环(暴力匹配)4 输出格式=> 第一行:单独输出 第二行到n行,之前加个‘,’ 最后一行加‘\n’怎么办...
2023-03-08
1
306
题解 | #Day of Week#
主要是各块功能分好,解题就很简单了,一个一个功能做 #include<cstdio> #include<iostream> #include<string> using namespace std; int daytable[2][13]={ {0,...
C++
2022-03-15
12
518