题解列表
1147: C语言训练-角谷猜想
摘要:参考代码:n = int(input())
while n != 1:
n = int(n)
if n % 2 == 0:
print(f"{n}/2={int……
1075: 台球碰撞(绝对牛逼!!!)
摘要:解题思路:注意事项:解析请看这里: https://blog.dotcpp.com/a/63859参考代码:#include <iostream>#include <cmath>#include <……
题解 1234: 检查一个数是否为质数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<=……
标准 A+B for Input-Output Practice (IV)
摘要:解题思路:用数组存放每次结果,再依次输出。注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int i=0; int……
编写题解 3073: 字符串匹配问题(strs)——C++ map set,括号匹配总结
摘要:#### 原题链接
[题目 3073: 字符串匹配问题(strs)](https://www.dotcpp.com/oj/problem3073.html "题目 3073: 字符串匹配问题(str……
for循环输出等腰三角形
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class YBT2998 { public static void main(String[] a……
调用Math.pow()幂函数平方
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args)……