题解列表

筛选

1670: 拆分位数

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a,b,c; cin>>n; c=n%10; b=n%10……

C++的通俗易懂方法

摘要:解题思路:拆解题目的过程,一次接一次地分析反弹的过程,从而能分析出反弹过程的共性和不同点注意事项:参考代码:#include <iostream>#include<cmath>#include<iom……

取石子游戏

摘要:解题思路:注意事项:参考代码:from math import sqrttry:    while True:        a,b=map(int,input().split())        i……

Tom数(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){     int i,s;    char a[100];    while(……

2877: 同行列对角线的格子

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d", &n);//n*n int i, j; scanf("%d %d", ……