题解 1806: [编程基础]输入输出练习之第二个数字

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

输入输出练习之第二个数字

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) #map()方法将字符串转化为整数 print(b) #也可以转化为列表,再通过索引获取,如下, #l……

输入输出练习之第二个数字

摘要:解题思路:对于已经知道要找第几个数,直接数组存取,很方便注意事项:参考代码:#include<stdio.h>int main(){    int a[4];    for(int i=0;i<4;i……

最简单易懂输出

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); printf("%d",……

输入输出--第二个数字

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[3]; for (int i = 0; i < 3; i+……