题解列表

筛选

汽水瓶 (C++代码)

摘要:参考代码:#include<iostream> using namespace std; int get(int x) {     if(x<=1) return 0;     if(x==……

不容易系列 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; scanf("%d",&a); while(a--){  int sum=3;  scan……