编写题解 1116: IP判断 摘要:解题思路:注意事项:参考代码:while True: s=input() if s=='End of file': break a,b,c,d=s.sp…… 题解列表 2022年04月24日 0 点赞 0 评论 690 浏览 评分:0.0
学生信息管理系统 摘要:解题思路:注意事项:参考代码:第一章 总则 第一条 为了维护学校正常的教育教学秩序,培养德、智、体全面发展的社会主义事业建设者和接班人,根据教育部《普通高等学校学生管理规定》、《高等学校学生行为准…… 题解列表 2022年04月24日 0 点赞 0 评论 846 浏览 评分:0.0
编写题解 1248: 简单的事情 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;unsigned long long int jiecheng(int n){ if(n…… 题解列表 2022年04月24日 0 点赞 0 评论 417 浏览 评分:0.0
编写题解 1249: 简单编码 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string s; wh…… 题解列表 2022年04月24日 0 点赞 0 评论 496 浏览 评分:0.0
题解 大小写转换 简单易懂 摘要:解题思路: 1.利用while函数输入字符串s 2.当输入的字符串为 End of file 跳出循环 3.用islower函数用于判断字符是否为小写字母(a-z) 4.int toupper…… 题解列表 2022年04月24日 0 点赞 0 评论 508 浏览 评分:0.0
1220题解 C++ 序列有序 新思路 摘要:解题思路: 1.把数直接插入原序列的末尾 2.然后用sort函数对新序列进行排序后再输出 注意事项: 利用sort函数要加algorithm的头文件 参考代码: ```cpp #incl…… 题解列表 2022年04月25日 0 点赞 0 评论 524 浏览 评分:0.0
最简单版本 摘要:解题思路:好吧,我承认我看题解了注意事项:无参考代码:#include<stdio.h>int main(){ int n,i,a[10],j; for(i=0;i<9;i++){ …… 题解列表 2022年04月25日 0 点赞 0 评论 382 浏览 评分:0.0
编写题解 1468: 蓝桥杯基础练习VIP-报时助手 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m; cin>>n>>m; string…… 题解列表 2022年04月25日 0 点赞 0 评论 462 浏览 评分:0.0
编写题解 1504: 蓝桥杯算法提高VIP-勾股数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int a=1;a<=1000;a++) { …… 题解列表 2022年04月25日 0 点赞 0 评论 390 浏览 评分:0.0
1609: 蓝桥杯算法训练VIP-黑色星期五 摘要:def isyun(n): if n%100==0: if n%400==0: return 1 else: 题解列表 2022年04月25日 0 点赞 0 评论 541 浏览 评分:0.0