题解列表
表达式计算1(大整数 + 字符串截取)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constintN&……
蓝桥杯算法提高VIP-单词个数统计
摘要:解题思路:使用getline和for循环编写,没有任何技术含量注意事项:别忘导入cstring库参考代码:#include<iostream>#include<cstring>……
台球碰撞,分解运动,为x,y方向运动
摘要:解题思路:注意事项:参考代码:#define _USE_MATH_DEFINES#include<iostream>#include<cmath>#include<iom……
1011: [编程入门]最大公约数与最小公倍数
摘要:#include<stdio.h>intshu(inta,intb){intc,d,max,min;max=(a>b)?a……