编写题解 1040: [编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double e; cin>>e; for(int …… 题解列表 2021年12月09日 0 点赞 0 评论 117 浏览 评分:0.0
实数的打印 c语言 摘要:解题思路:这个和打印hello world 我用的一个思路,目的达到了,答案可能不妥注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f"…… 题解列表 2021年12月04日 0 点赞 0 评论 136 浏览 评分:0.0
实数的打印-Java 摘要:解题思路:注意事项:System.out.print( String.format( "%6.2f", a ) + " " );参考代码: public static void main(String…… 题解列表 2021年11月22日 0 点赞 0 评论 361 浏览 评分:9.9
1040: [编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2021年11月17日 0 点赞 0 评论 172 浏览 评分:0.0
实数的打印 摘要:解题思路:主要是理解”6.2f“格式,这是个占位符,f表示float类型,6表示输出的数字占六位,数字向右靠齐。2表示精确到小数点后两位。注意事项:不要忘了“用空格分隔同一行的数字"这一要求参考代码:…… 题解列表 2021年11月14日 0 点赞 0 评论 216 浏览 评分:0.0
[编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ float num; //定义数字,类型为 float 题解列表 2021年11月10日 0 点赞 0 评论 99 浏览 评分:0.0
1040我的才是好的C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float x;scanf("%f",&x); printf("%6.2f\n%6.2f %6.2f\n%6.…… 题解列表 2021年11月05日 0 点赞 0 评论 128 浏览 评分:0.0
1040: [编程入门]实数的打印 标题-题解(python) 摘要:解题思路:注意事项:参考代码:a = float(input())print('{:6.2f}'.format(a))print('{:6.2f} {:6.2f}'.f…… 题解列表 2021年10月14日 0 点赞 0 评论 146 浏览 评分:0.0
代码还是很简单的!!!! 摘要:解题思路 题目要求用6.2f的格式,意思就是用占位符 %6.2f 的形式来输出 &nbs 题解列表 2021年09月05日 0 点赞 0 评论 101 浏览 评分:0.0
float数字scanf的时候是%f,double是%lf 摘要:解题思路:注意事项:float数字scanf的时候是%f,double是%lf参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:…… 题解列表 2021年08月29日 0 点赞 0 评论 240 浏览 评分:0.0