题解列表

筛选

三位数分解 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,g,s,b; scanf("%d",&x); b=x/100; s=x/10%10; g=x%10;……

C语言训练-委派任务* (C语言代码)

摘要:解题思路:数学模拟题哦 找到矛盾的条件是解决这类问题最快速的方法 我就偷懒直接输出了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int ……