输入输出练习之第二个数字题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf…… 题解列表 2022年01月25日 0 点赞 0 评论 83 浏览 评分:0.0
1806输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a, &b, &c); printf("%d…… 题解列表 2022年04月07日 0 点赞 0 评论 216 浏览 评分:0.0
输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) #map()方法将字符串转化为整数 print(b) #也可以转化为列表,再通过索引获取,如下, #l…… 题解列表 2022年10月17日 0 点赞 0 评论 149 浏览 评分:0.0