编写题解 1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ double a; while(cin>>a) {…… 题解列表 2024年07月18日 0 点赞 0 评论 206 浏览 评分:9.9
1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年09月27日 0 点赞 0 评论 136 浏览 评分:0.0
摩西摩西!! 摘要:```cpp #include using namespace std; int main(){ double n; while(cin >> n){ …… 题解列表 2022年03月19日 0 点赞 0 评论 250 浏览 评分:0.0
c++代码求绝对值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main(){ …… 题解列表 2022年02月21日 0 点赞 0 评论 255 浏览 评分:0.0
1848: 求输入数据绝对值 摘要:#include <bits/stdc++.h> using namespace std; int main(){ double x; while(cin>>x){ …… 题解列表 2022年01月11日 0 点赞 0 评论 119 浏览 评分:0.0
求输入数据绝对值-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ double n; while(ci…… 题解列表 2020年04月24日 0 点赞 0 评论 404 浏览 评分:0.0
求输入数据绝对值 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<math.h> using namespace std; int main(){ double s; …… 题解列表 2018年09月14日 2 点赞 0 评论 1035 浏览 评分:0.0
求输入数据绝对值 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std; int main() { float a,b; …… 题解列表 2018年08月07日 0 点赞 0 评论 676 浏览 评分:0.0
求输入数据绝对值 (C++代码) 摘要:注意事项:注意输入和输出类型即可 #include"bits/stdc++.h" using namespace std; int main() { float n; while(ci…… 题解列表 2018年06月11日 1 点赞 0 评论 1018 浏览 评分:9.9