题解列表
1007: [编程入门]分段函数求值
摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { ……
【Python题解】蓝桥杯2013年第四届真题-带分数
摘要:解题思路:思路是参照另一位佬,对代码进行了注释和部分修改。从整数->分母->分子,逐个进行判断,具体见代码。参考代码:n = int(input())
# L = ['1', ……
2857: 加密的病历单(python)
摘要:解题思路:注意事项:参考代码:s = input()
s1 = ""
for i in s:
if (i >= 'x' and i <= 'z') or ……
1049: [编程入门]结构体之时间设计
摘要:```cpp
#include
using namespace std;
struct Date
{
int year,mouth,day;
};
int IsLeapY……
1050: [编程入门]结构体之成绩记录
摘要:```cpp
#include
using namespace std;
struct Student
{
string num,name;
int Math,Engl……
2858: 整理药名(python)
摘要:解题思路:注意事项:参考代码:n = int(input())
while True:
try:
s = input()
s1 = ""
for i in s:
……
2861: 验证子串(python)
摘要:解题思路:注意事项:参考代码:a = input().strip()
# 注意把前导空格去掉
b = input().strip()
if a in b:
print("%s is s……
题解 3007: 收费
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n = 0; double feiyong = 0; scanf("%lf\n", &n); if……