题目 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:定义一个数组,利用数组地址指定输出值。注意事项:数组定义为int型,而不是char。参考代码:#include<stdio.h>int main(){ int a[3]; for…… 题解列表 2022年06月30日 0 点赞 0 评论 109 浏览 评分:2.0
[编程基础]输入输出练习之第二个数字(C语言) 摘要: #include int main() { int a=0,b; while(scanf("%d",&b)!=EOF && ++a){ …… 题解列表 2022年07月13日 0 点赞 0 评论 332 浏览 评分:0.0
输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) #map()方法将字符串转化为整数 print(b) #也可以转化为列表,再通过索引获取,如下, #l…… 题解列表 2022年10月17日 0 点赞 0 评论 141 浏览 评分:0.0
输入输出练习之第二个数字 摘要:解题思路:定义三个变量,用scanf输入三个整数,用printf输出第二个整数注意事项:%d%d%d之间无任何字符参考代码:#include<stdio.h>int main(){int a,b,c;…… 题解列表 2022年10月19日 0 点赞 0 评论 399 浏览 评分:7.3
输入输出练习之第二个数字(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2022年10月31日 0 点赞 0 评论 1060 浏览 评分:7.3
输入输出练习之第二数字(数组版) 摘要:解题思路:非常常规的思路注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; int i; for(i=0;i<3;i++) { …… 题解列表 2022年11月08日 0 点赞 0 评论 808 浏览 评分:9.3
1806一行解(Python) 摘要:解题思路:将sys.stdin的内容转换为列表形式后打印即可注意事项:参考代码:print(input().split()[1])…… 题解列表 2023年05月30日 0 点赞 0 评论 287 浏览 评分:9.9
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路: 1、创建三个整形变量 2、输入他们 3、输出第二个整形变量参考代码:#include<iostream> using namespace std; int main(…… 题解列表 2023年07月14日 0 点赞 0 评论 179 浏览 评分:6.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2023年09月26日 0 点赞 0 评论 64 浏览 评分:0.0
萌新出品 1806: [编程基础]输入输出练习之第二个数字 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>> a >> b >> c; cout<<…… 题解列表 2023年11月15日 0 点赞 0 评论 341 浏览 评分:9.9