题解列表
采药python,不知哪里错了,请求支援
摘要:解题思路:注意事项:参考代码:各位大神帮我看看哪里有问题,实在找不出哪里错了。。。。。我测试的数据都成功t,m = map(int,input().split())s = []h = 0sum = 0……
C语言考试练习题_一元二次方程(c语言)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c,x1,x2,t; scanf("%lf %lf %lf",&a,&b,&c……
1009: [编程入门]数字的处理与判断(入门新手)
摘要:#include<stdio.h>int main(){ int a,b,c,d,e,f,t; scanf("%d",&a); b=a/10000; c=a/1000%10; d=a/100%10; ……
C语言代码(循环+数列)
摘要: #include
#include
int main()
{
// 实现逆序,判断回文数均可写成函数
int n;// 几进制
char ch1[50] = { 0 ……
1159: 偶数求和
摘要:```cpp
#include
using namespace std;
int main()
{
int n,m,num[100];
num[0]=2;
for……
1160: 出圈(c++)
摘要:```cpp
#include
using namespace std;
int main()
{
int n,m;
while(cin>>n>>m)
{
……
C语言考试练习题_保留字母(c语言)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char n[80]; gets(n); for(int ……
苹果和虫子(超简单)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n, x, y; cin >> n >> x >>……