一元n次方程 摘要: #include void jj(int a,int i) { if(a!=1) printf("%d",a); printf("x")…… 题解列表 2021年10月22日 0 点赞 0 评论 627 浏览 评分:9.9
求一元二次方程(C语言) 摘要:解题思路:一元二次方程的求解公式注意事项:题目所要求的输出参考代码:#include<stdio.h>#include<math.h>double P,Q,K,X;void d0();void d1(…… 题解列表 2021年10月22日 0 点赞 0 评论 690 浏览 评分:6.0
题解 1196: 去掉空格 摘要:参考代码:#include<stdio.h>#include<string.h>#define N 80 typedef char str[N]; //重定义一个含有80个元素的字符数组 v…… 题解列表 2021年10月22日 0 点赞 1 评论 855 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:先定义时间结构体:struct time{ int year; int month; int day; }; 定义主函数,和结构体联系起来: int ma…… 题解列表 2021年10月22日 0 点赞 0 评论 512 浏览 评分:9.9
1148: C语言训练-计算1977!*-题解(python) 解题思路:注意事项:参考代码:a=1977s=1whilea:s*=aa-=1print(s) 题解列表 2021年10月22日 0 点赞 0 评论 491 浏览 评分:0.0
台球碰撞-题解(python代码) 摘要:解题思路:将台球的整个运动过程沿水平和竖直两个方向分解,分别求出末横坐标M和末纵坐标N参考代码:#台球碰撞 from math import * def REAL(p,q): if p<…… 题解列表 2021年10月21日 0 点赞 0 评论 1142 浏览 评分:8.0
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; for(a=100;a<=999;a++) { b=a%10…… 题解列表 2021年10月21日 0 点赞 0 评论 900 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int i,d,u; float result=0.0,o=0.0,p=0.0…… 题解列表 2021年10月21日 0 点赞 0 评论 522 浏览 评分:0.0
题解 1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:这个循环很有意思注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[105]; char b[105]…… 题解列表 2021年10月21日 0 点赞 0 评论 553 浏览 评分:0.0
编写题解 1125: C语言训练-委派任务* 摘要:解题思路:恶心的题目利用1和0表示去或者不去,循环一直套,判断条件稍微注意一点就好注意事项:参考代码:import java.util.Scanner;public class Main { p…… 题解列表 2021年10月21日 0 点赞 1 评论 666 浏览 评分:9.9