输出M到N的数-题解(C语言代码) 摘要:解题思路:注意事项:注意输出的值从M+1开始而不是M,结尾为N参考代码:#include <stdio.h> int main() { int M,N,i; scanf("%d%d",&M…… 题解列表 2021年02月06日 0 点赞 0 评论 251 浏览 评分:9.9
【Python】编写题解 1981: 输出M到N的数 摘要:注意事项:利用range()函数循环输出参考代码:M, N = map(int, input().split()) if M<N: for i in range(M+1, N+1): …… 题解列表 2022年12月02日 0 点赞 0 评论 84 浏览 评分:9.9
输出M到N的数 (C++清晰解法) 摘要:C++ 大家笑纳 ```cpp #include using namespace std; int main() { int m ,n; cin >> m >> n; if (…… 题解列表 2020年02月21日 0 点赞 0 评论 751 浏览 评分:9.9
输出M到N的数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int m,n,i; scanf("%d%d",&m,&n); if(m<n) { for(i=m+1…… 题解列表 2020年08月05日 0 点赞 0 评论 311 浏览 评分:9.9
[C++]题解 1981: 输出M到N的数 摘要:# 题解 1981: 输出M到N的数 ### 代码与思路如下 ```cpp #include using namespace std; int main() { int m,n,…… 题解列表 2024年01月22日 0 点赞 0 评论 115 浏览 评分:9.9
输出M到N的数-题解(C++代码) 摘要:不会的小伙伴来看看哦。 根据题目要求可以写if else 来表示两种情况,再结合for循环就行, 你们可以看看我的办法。 #include using namespace s…… 题解列表 2020年01月31日 0 点赞 0 评论 778 浏览 评分:9.9
输出M到N的数-题解(C语言代码) 摘要:解题思路:注意事项:注意M=N这种情况;参考代码:#include <stdio.h>int main(){ int M,N,i; scanf("%d%d",&M,&N); if(M<N) for(i…… 题解列表 2020年12月01日 0 点赞 0 评论 399 浏览 评分:8.0
1981简单的解法(C) 摘要:解题思路:如下注意事项:如果复制,请复制过后检查,我提交时是正确的。参考代码:#include<stdio.h>int main(){ int M,i,N;//定义 scanf("%d%d",&M,…… 题解列表 2022年08月21日 0 点赞 1 评论 97 浏览 评分:8.0
输出M到N的数-题解(C语言代码)满分题解!! 摘要: #include int main() { int M=0,N=0; scanf("%d %d",&M,&N); if(N>M) …… 题解列表 2019年12月09日 0 点赞 0 评论 803 浏览 评分:6.8
解 1981: 输出M到N的数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,d; cin>>a>>b; if(a>=b)…… 题解列表 2023年11月06日 0 点赞 0 评论 72 浏览 评分:4.0