蓝桥杯算法训练VIP-斜率计算-题解(C语言代码) 摘要:`值得参考的代码 #include #include int main(){ int x1, x2, y1, y2; scan…… 题解列表 2019年11月23日 0 点赞 0 评论 555 浏览 评分:9.9
蓝桥杯算法训练VIP-斜率计算-题解(C语言代码) 摘要:注意一下绝对值就好 ```c #include #include int main(){ int x1, x2, y1, y2; scanf("%d %d %d %d", &x1,…… 题解列表 2019年07月08日 0 点赞 3 评论 1086 浏览 评分:9.9
斜率计算 (C语言代码) 摘要:注意事项:结果是整数,懒得改了#include<stdio.h>int main(){ float x1,x2,y1,y2; scanf("%f%f%f%f",&x1,&y1,&x2,&y…… 题解列表 2017年12月07日 1 点赞 0 评论 5458 浏览 评分:5.2
蓝桥杯算法训练VIP-斜率计算 (C语言代码) 摘要:#include "stdafx.h"int main(){ float x1, y1, x2, y2; double k; printf("input x1,y1 x2,y2 \n"); scan…… 题解列表 2018年10月23日 0 点赞 0 评论 577 浏览 评分:0.0
蓝桥杯算法训练VIP-斜率计算 (C语言代码) 摘要:#include <iostream> #include <cstdlib> #include <cmath> #include <string.h> #include <string> #…… 题解列表 2018年03月21日 0 点赞 0 评论 753 浏览 评分:0.0
蓝桥杯算法训练VIP-斜率计算-题解(C语言代码) 摘要:结果要求为整数,直接除,不用考虑绝对值问题,减法顺序对了就行 ```c #pragma warning(disable:4996) #include #include #include…… 题解列表 2020年02月04日 0 点赞 0 评论 330 浏览 评分:0.0
蓝桥杯算法训练VIP-斜率计算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ float x1,y1,x2,y2; scanf("%f%…… 题解列表 2018年01月22日 0 点赞 0 评论 563 浏览 评分:0.0