编写题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { doubl…… 题解列表 2022年09月02日 0 点赞 0 评论 862 浏览 评分:7.3
编写题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:print('%.2f'%abs(float(input()))) #print('{:.2f}'.format(abs(float(i…… 题解列表 2022年10月18日 0 点赞 0 评论 1203 浏览 评分:5.6
求绝对值的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float a; scanf("%f",&a); if(a>=0){ printf("%.2f",a); }…… 题解列表 2022年10月25日 0 点赞 0 评论 414 浏览 评分:7.0
输出绝对值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main(){ …… 题解列表 2022年10月30日 0 点赞 0 评论 238 浏览 评分:8.0
C语言解决输出绝对值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){double x;scanf("%lf",&x);if(x<0)printf("%.2f\n",-x);if(x>…… 题解列表 2022年11月02日 0 点赞 3 评论 1221 浏览 评分:9.0
2779: 输出绝对值 摘要:解题思路: 这道题考察的是条件语句的应用注意事项:参考代码:a = float(input())if a >= 0: print('{:.2f}'.format(a)) #第一…… 题解列表 2022年11月27日 0 点赞 0 评论 374 浏览 评分:2.0
2779: 输出绝对值 摘要:```cpp #include #include #include using namespace std; int main() { double n; cin>>n…… 题解列表 2022年12月17日 0 点赞 0 评论 494 浏览 评分:9.9
输出绝对值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x; scanf("%lf",&x); p…… 题解列表 2022年12月30日 0 点赞 0 评论 455 浏览 评分:8.0
2779 输出绝对值题解 摘要:解题思路:本题只需要按照题干的要求模拟输出即可。注意事项:1.绝对值,即非负数的绝对值为其本身,负数的绝对值为其相反数(即符号相反) 2.注意保留两位小数。可以用fixed和…… 题解列表 2022年12月31日 0 点赞 0 评论 162 浏览 评分:0.0
小试牛刀!!!!!!!!!! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args)…… 题解列表 2023年02月19日 0 点赞 0 评论 381 浏览 评分:7.3