题解列表

筛选

整除的尾数 (C语言代码)

摘要:解题思路:水一波注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; while(scanf("%d %d",&a,&b)!=EOF){  if(a==0……

去掉空格 (C++代码)

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

【蟠桃记】 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; float fun2(float n) { return n - n / 2 -……

十->二进制转换 (C语言代码)

摘要:解题思路:  阶次除二      逆序输出注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int a[18];int ma……