编写题解 2554: 交点 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { doubl…… 题解列表 2023年10月30日 0 点赞 0 评论 68 浏览 评分:0.0
2554———————交点 摘要: a,b = map(float,input().split()) c,d = map(float,input().split()) x = (d-b)/(a-c) …… 题解列表 2022年07月07日 0 点赞 0 评论 274 浏览 评分:0.0
交点 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年06月02日 0 点赞 0 评论 108 浏览 评分:0.0
套公式就好--两直线交点 摘要:解题思路:注意事项:头文件勿忘,保留两位小数,x,y之间空格参考代码:#include<iostream>#include<iomanip>using namespace std;int main()…… 题解列表 2022年01月28日 0 点赞 0 评论 191 浏览 评分:9.9
直线交点问题【小学生都会】 摘要:```c #include int main() { double a,b,c,d,x,y; scanf("%lf%lf%lf%lf",&a,&b,&c,&d); x=(d-b)/(…… 题解列表 2021年08月29日 0 点赞 2 评论 198 浏览 评分:9.9