[编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; for…… 题解列表 2023年05月17日 0 点赞 0 评论 97 浏览 评分:0.0
1040: [编程入门]实数的打印c语言 摘要: 这道题首先我们要知道什么是实数。 数学上,实数定义为与数轴上的实数,点相对应的数。实数可以直观地看作有限小数与无限小数,实数和数轴上的点一一对应。但仅仅以列举的方式不能描述实数的整体。实…… 题解列表 2024年03月17日 0 点赞 0 评论 96 浏览 评分:0.0
[编程入门]实数的打印-题解(C语言代码) 摘要:解题思路:类似于杨辉三角,使用双循环即可;注意事项:不要漏了空格 注意:输出的格式为 %6.2f参考代码:#include <stdio.h> int main() …… 题解列表 2021年01月26日 0 点赞 0 评论 204 浏览 评分:0.0
实数的打印 (简单输出就欧了,c++) 摘要:解题思路:按题目要求输入,并用"6.2f"输出。注意事项:要用printf输出。参考代码:#include<bits/stdc++.h>using namespace std;float a;int …… 题解列表 2022年05月11日 0 点赞 0 评论 146 浏览 评分:0.0
编写题解 1040 实数的打印 摘要:解题思路:注意事项:参考代码://如果打印b行 int main(){ int i, j,b; float a; scanf_s("%f %d", &a,&b); for (…… 题解列表 2022年07月26日 0 点赞 0 评论 79 浏览 评分: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
实数的打印 c语言 摘要:解题思路:这个和打印hello world 我用的一个思路,目的达到了,答案可能不妥注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f"…… 题解列表 2021年12月04日 0 点赞 0 评论 136 浏览 评分:0.0
[编程入门]实数的打印-题解(Java代码) 摘要:# *import java.util.Scanner; import java.util.Scanner; public class Main { public static void …… 题解列表 2019年06月27日 0 点赞 0 评论 492 浏览 评分:0.0
[编程入门]实数的打印-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:number = float(input()) for i in range(1,4): print( 题解列表 2021年02月19日 0 点赞 0 评论 126 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:解题思路:注意事项:#include<stdio.h>int main(){ float i; scanf("%f",&i); printf("%6.2f\n",i); printf("%6.2…… 题解列表 2017年08月14日 0 点赞 0 评论 674 浏览 评分:0.0