编写题解 1810: [编程基础]输入输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char char_1; int number_1; float float_1; do…… 题解列表 2022年10月19日 0 点赞 0 评论 84 浏览 评分:0.0
小学生的c++题解 摘要:解题思路:无注意事项:无参考代码#include<iostream>using namespace std;int main(){ char a; int b; float c; double d; …… 题解列表 2022年09月25日 0 点赞 0 评论 244 浏览 评分:6.0
用format函数格式化输出 摘要:解题思路:水平不高勉强看看吧注意事项:参考代码:a,b,c,d=map(str,input().split())print('{0} {1:>4d} {2:.2f} {3:.12f}'…… 题解列表 2022年07月30日 0 点赞 0 评论 368 浏览 评分:9.0
[编程基础]输入输出练习之精度控制3(C语言) 摘要: #include int main() { char a; int b; float c; …… 题解列表 2022年07月14日 0 点赞 0 评论 353 浏览 评分:0.0
简单输出易懂 精度控制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; int b; float c; double d; scanf("…… 题解列表 2022年06月22日 0 点赞 0 评论 113 浏览 评分:0.0
输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ char ch; int num; float f; double d; scanf("%c %d %f…… 题解列表 2022年06月21日 0 点赞 0 评论 121 浏览 评分:0.0
1810:输入输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char ch; int a; float b; double c;&nb 题解列表 2022年04月08日 0 点赞 0 评论 197 浏览 评分:0.0
输入输出练习之精度控制3 C语言 摘要:解题思路:通过scanf格式化字符来输出符合要求的字符注意事项:格式化字符要在百分号后面%d 十进制有符号整数 %f float型浮点数%ld…… 题解列表 2022年03月14日 0 点赞 0 评论 801 浏览 评分:8.4
输入输出--精度控制c++ 摘要:解题思路:和上一篇差不多注意事项:数据类型不要搞错,空格,参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){…… 题解列表 2022年03月11日 0 点赞 0 评论 172 浏览 评分:0.0
输入输出练习之精度控制3题解 摘要:解题思路:easy注意事项:参考代码:#include<stdio.h>int main(){ char a; int b; float c; double d; sca…… 题解列表 2022年01月25日 0 点赞 0 评论 150 浏览 评分:0.0