题解列表

筛选

发工资咯 (C语言代码)

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

Lucky Word (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int f(int n);int f(int n) { int i; if(n<2) {  re……

P1006 (C++代码)

摘要:#include"bits/stdc++.h" using namespace std; int main() { string a; cin >> a; int len = a.s……

可AC (C语言代码)

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