蓝桥杯算法提高VIP-输入输出格式练习-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月11日 0 点赞 0 评论 298 浏览 评分:0.0
python-输入输出格式练习 摘要:解题思路:注意事项:在输入的时候需要加一个strip(),因为题目输入的时候后面多了一个空格参考代码:def f(n): a = int(n[:3]) b = fl…… 题解列表 2022年01月23日 0 点赞 6 评论 240 浏览 评分:0.0
蓝桥杯算法提高VIP-输入输出格式练习-题解(C++代码)详细注释!! 摘要:解题思路: 三个数分别int、float、char,格式化输入,输入中的|在格式化输入里预存 格式化输出,负数左对齐,正数右对齐,输出中的|在格式化输出里预存注意事项:参考代码:#incl…… 题解列表 2020年08月25日 0 点赞 0 评论 241 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:题目是不难,但是很容易错,题目有隐含的条件。注意事项:注意题目输入的时候在实数与字符有个|,而且实数输出的时候要保留一位小数。参考代码:#include<stdio.h>int main()…… 题解列表 2017年12月21日 0 点赞 0 评论 818 浏览 评分:0.0
1569: 蓝桥杯算法提高VIP-输入输出格式练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; char c; float f; scanf("%3d",&a); scanf("%f",&f)…… 题解列表 2021年03月03日 0 点赞 0 评论 266 浏览 评分:0.0
蓝桥杯算法提高VIP-输入输出格式练习 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a; double b; char c; scanf("%3d%lf|%c",&…… 题解列表 2019年05月27日 0 点赞 0 评论 427 浏览 评分:0.0
C语言代码 萨达十大good 摘要:解题思路:jiuzhe 注意事项:scanf ("|") /*"|"也要写进去*/参考代码:#include <stdio.h>int main (){ int a;float b;c…… 题解列表 2021年11月01日 0 点赞 0 评论 165 浏览 评分:0.0
输入输出格式练习 (C语言代码) 摘要:注意事项:要注意“格式”这两个字!参考代码:#include<stdio.h>int main(){ int a; float b; char c,d; scanf("%3d%…… 题解列表 2017年10月23日 0 点赞 0 评论 906 浏览 评分:0.0
蓝桥杯算法提高VIP-输入输出格式练习-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年02月17日 0 点赞 0 评论 366 浏览 评分:0.0
输入输出格式练习 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc…… 题解列表 2022年05月14日 0 点赞 0 评论 116 浏览 评分:0.0