题解列表
编写题解 3008: 买笔,
摘要:解题思路:注意事项:只因你太美参考代码:#include <iostream>using namespace std;int main(int argc, char** argv) {int x,y,……
2800: 多边形内角和
摘要:解题思路:注意事项:参考代码:m = 0n = int(input())a = list(map(int,input().split()))for i in a: m += iprint((n ……
C语言训练-阶乘和数* 笨方法
摘要:解题思路:先将符合条件的数字找出来,放在一个数组里,再来排序。希望对大家要帮助参考代码:#include<stdio.h>int R1(int n){ int sum2 = 1; for (; n >……
简单算术表达式求值(C语言)
摘要:#include<stdio.h>
void my_fun(int x,char v, int y)
{
if(v=='+')
{
printf("%d\n", x ……
2845: 求10000以内n的阶乘 重载运算符好看
摘要:解题思路:高精度模拟大整数 乘法、输出注意事项:参考代码:#include <iostream>
// #include <sstream>
// #include <cstdio>
// #i……
2813: 药房管理
摘要:解题思路:注意事项:参考代码:s = 0
m = int(input())
n = int(input())
y = list(map(int,input().split()))
for i ……
1006: [编程入门]三个数找最大值python题解
摘要:运用列表简易找出,还能举一反三print输出时用变量名直接表述参考代码:a=list(map(int,input().split())
print(max(a))……
怎么没人??那我来吧!!!!
摘要:```cpp
#include
using namespace std;
char s1[101],s2[101],x[101],t[101];
int l,l1;
int main()
……