题解列表

筛选

1723: 求最大值 超级简单做法

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){     // 定义一个长度为10的整型数组a  ……

编写题解 1073: 弟弟的作业

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>         //atio函数,将字符串转换为数字.#include<string.h>    ……

新手 乘方计算

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