题解列表

筛选

整除的尾数 (C++代码)

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

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio,h>void main(){   int a,b;   scanf("%d,%d",&a,&b);   printf("%d",a+b);……

字符逆序 (Java代码)

摘要:解题思路:注意事项:参考代码:package cWeb.buleCup; import java.util.Scanner; public class C1093 { public……

Hello, world! (Java代码)

摘要:解题思路:注意事项:参考代码:package cWeb.buleCup; import java.util.Scanner; public class C1083 { public……

母牛的故事 (C语言代码)

摘要:解题思路:思路只要自己去推算一下,就知道是f(x)=f(x-1)+f(x-3)的迭代,使用了递归函数运行不起来,所以使用数组。注意事项:因为看题目,是要先输入所有的数,直到输入0为止才会有输出,所以先……

人民币问题 (C++代码)

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