题解列表
简单的a+b (C语言代码)
摘要:解题思路:注意事项:参考代码:#include "stdio.h"#define N 100int main(){int a,b;printf("please input 2 numbers:\n")……
WU-蓝桥杯算法提高VIP-多项式输出 (C++代码)
摘要:参考代码:#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n;
cin>>……
C二级辅导-进制转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int x;
scanf("%d",&x);
printf("%o",x)……
WU-C语言训练-8除不尽的数 (C语言代码)
摘要:参考代码:#include<stdio.h>
int main()
{
int x,x1,x2,x3,x4,a;
for(x=0;x<2000;x++)
{
x1=x/8;
……
WU-C语言训练-"水仙花数"问题2 (C语言代码)
摘要:参考代码:#include<stdio.h>
#include<math.h>
int main()
{
int i,j,k;
for(i=1;i<=9;i++)
{
for(……
Jam的计数法 (C语言代码)
摘要:解题思路:题目写得很迷,把题目结果写出来看,就明显了。b c d e f g h i j 取值归率b d g h ib d g h jb d g i ……
开心的金明 (C语言代码)
摘要:解题思路:01背包,价值加个乘法而己注意事项:参考代码:#include<stdio.h>#include<string.h>int max(long int a,long int b){ re……