题解列表

筛选

1为真,0为假

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

c语言数组解法

摘要:参考代码:#include<stdio.h>int main(){ int L,M; int a,b; int arr[10000]={0}; int count=0; scanf(&qu……

c语言倒过来解题

摘要:解题思路:倒过来 第一天1个 第二天是(1+1)*2 第三天是(4+1)*2........依次类推到第n天 是 (第(n-1)天的量+1)*2注意事项:参考代码:#include<stdio.……