c代码记录之多输入输出问题(important) 摘要:下方代码是把0算进比较的,系统也给过了,刚开始while漏了花括号,感谢雷兄一针见血。 后面写一个不把结尾0算进比较的代码 ```c #include int main() { i…… 题解列表 2023年11月30日 0 点赞 0 评论 125 浏览 评分:0.0
多输入输出练习1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){ using namespace std; int i=0,max,t; int * s = new int […… 题解列表 2019年04月24日 0 点赞 0 评论 459 浏览 评分:0.0
java 20行 基础循环与判断 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { int …… 题解列表 2022年10月06日 0 点赞 0 评论 82 浏览 评分:0.0
多输入输出练习1(数组解法) 摘要:解题思路:注意事项:在输入为零的时候记得要将最大值置零。参考代码:#include<stdio.h>int main(){ int i=0; int max; int a[1000]; int fla…… 题解列表 2021年12月20日 0 点赞 0 评论 102 浏览 评分:0.0
Hifipsysta-1202-多输入输出练习1(C++代码) 摘要:```cpp #include #include #include using namespace std; bool arrange_rule(int a, int b){ …… 题解列表 2022年02月05日 0 点赞 0 评论 100 浏览 评分:0.0
多次输入输出每行最大值python 摘要:解题思路:注意事项:输入可能会有点问题,所以在except后面加一个EOFError参考代码:while True: try: L = list(map(int,input().s…… 题解列表 2023年03月19日 0 点赞 0 评论 116 浏览 评分:0.0
多输入输出练习1 (C语言代码)利用数组和memset函数 摘要:#include <stdio.h>#include <string.h> //memset函数在string.h头文件中void judge_…… 题解列表 2018年04月16日 0 点赞 0 评论 861 浏览 评分:0.0
看错题目,以为又是一个文本整个内容输入,他这个是一行一行输入的数据, 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> #include<stdlib.h> #include<ctype.h> in…… 题解列表 2022年03月06日 0 点赞 0 评论 128 浏览 评分:0.0
编写题解 1202: 多输入输出练习1(非常简单的方法一看就懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,max=0; while(scanf("%d",&a)==1) { if(a>max) m…… 题解列表 2023年11月15日 0 点赞 0 评论 95 浏览 评分:0.0
题解 1202: 多输入输出练习1 摘要:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int x; int y; while(scanf("%d",&x)!=E…… 题解列表 2021年05月21日 0 点赞 0 评论 149 浏览 评分:0.0