1806: [编程基础]输入输出练习之第二个数字 摘要:无脑打印。#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin >> a >> …… 题解列表 2022年01月03日 0 点赞 0 评论 158 浏览 评分:0.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:太简单了,凑点字数吧注意事项:参考代码:a,b,c = map(int,input().split())print(b)…… 题解列表 2021年12月31日 0 点赞 0 评论 698 浏览 评分:9.3
不是吧不是吧这也看? 摘要:解题思路:把手拿出来注意事项:睁开眼睛参考代码:package com.itheima;import java.util.Scanner;public class Text28 { public st…… 题解列表 2021年12月17日 0 点赞 0 评论 287 浏览 评分:0.0
输出中间的数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d\n",b); …… 题解列表 2021年12月07日 0 点赞 0 评论 192 浏览 评分:0.0
第二个数字 摘要:解题思路:注意事项:使用main函数,注意空格。参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c)…… 题解列表 2021年11月29日 0 点赞 0 评论 142 浏览 评分:0.0
输入输出练习之第二个数字(小白易懂版) 摘要:解题思路:这道题还是很简单的了,从main函数开始,定义变量,最后再输入输出就好了。注意事项:在输入的格式中,“%d %d %d"中的格式中间有两个空格,用键盘敲入的时候,输入的数字中间也要有空格,不…… 题解列表 2021年11月12日 0 点赞 0 评论 387 浏览 评分:2.0
1806C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int b; scanf("%*d %d %*d",&b); printf ("%d",b…… 题解列表 2021年11月01日 0 点赞 0 评论 220 浏览 评分:0.0
Ikaros-1806:[编程基础]输入输出练习之第二个数字 Python解决 摘要:解题思路:使用列表和map函数即可参考代码:number = list(map(int,input().split()))print(number[1])…… 题解列表 2021年09月18日 0 点赞 0 评论 744 浏览 评分:7.3
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("%d",b); …… 题解列表 2021年08月12日 0 点赞 0 评论 147 浏览 评分:0.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:输入三个正整数,取其第二个数字,即:a,b,c中的b注意事项:别输错数,别选错语言(C++)参考代码:#include<bits/stdc++.h> using namespace std…… 题解列表 2021年05月24日 0 点赞 0 评论 2176 浏览 评分:9.9