题解列表

筛选

1062: 二级C语言-公约公倍

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

1060: 二级C语言-同因查找

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() {     for (int i = 10; i <= 1……

1671: 小九九

摘要:解题思路:我偷懒了,面向结果编程注意事项:参考代码:#include <iostream> using namespace std; int main() {     printf("1*……

1670: 拆分位数

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

邮资大小跟排列顺序无关

摘要:解题思路:邮资的大小跟排列顺序无关,只跟邮票总数、各类邮票数量有关注意事项:参考代码:#include<stdio.h> int main() {     int sum=0;     for……