输出M到N的数-题解(C语言代码) 摘要:解题思路:用for循环找出符合的数。注意事项:参考代码:#include <stdio.h>int main(){ int M,N,i; scanf("%d%d",&M,&N); if(M>=N) {…… 题解列表 2020年10月06日 0 点赞 0 评论 262 浏览 评分:0.0
输出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
输出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 评论 253 浏览 评分:9.9
1981: 输出M到N的数 摘要:无脑打印。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin >> a >> b; …… 题解列表 2022年01月02日 0 点赞 0 评论 107 浏览 评分:0.0
输出M到N的数 (Java代码) 摘要:import java.util.Scanner; public class Main{ public static void main(String[] args) { Scan…… 题解列表 2022年02月02日 0 点赞 0 评论 151 浏览 评分:0.0
1981简单的解法(C) 摘要:解题思路:如下注意事项:如果复制,请复制过后检查,我提交时是正确的。参考代码:#include<stdio.h>int main(){ int M,i,N;//定义 scanf("%d%d",&M,…… 题解列表 2022年08月21日 0 点赞 1 评论 98 浏览 评分:8.0
【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的数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,m,n; scanf("%d%d",&m,&n); if(m<n) …… 题解列表 2023年01月16日 0 点赞 0 评论 75 浏览 评分:0.0
输出M到N的数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a>=…… 题解列表 2023年05月10日 0 点赞 0 评论 73 浏览 评分:0.0
1981: 输出M到N的数 摘要:```c++ #include using namespace std; int main() { int m,n; cin>>n>>m; if(n>=m)…… 题解列表 2023年05月13日 0 点赞 0 评论 107 浏览 评分:0.0