题解 1235: 检查金币

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

题解 1235: 检查金币

摘要:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){    int x;    while(scanf("%d",&x……

编写题解 1235: 检查金币

摘要:解题思路:注意事项:参考代码:while True:     try:         n=int(input())         for a in range(9,12):       &nb

1235: 检查金币

摘要:```cpp #include #include #include using namespace std; int w,r[10]={1,3,9,27,81,243,729,2187,65……

1235: 检查金币

摘要:解题思路:题目可以直接用10个for循环搞定,虽然代码不是很简洁,但思路简单。注意事项:参考代码:while True:    try:        n=int(input())        fo……

天才的两种解法

摘要:while True:     try:         # 从输入中读取一个6位的正整数,表示金币的总重量         k = int(input()) - 265716  # 减去初始值……

C++_dfs容易理解

摘要:解题思路:10个位置每个位置上找到满足的数放置注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int n;int ar……