1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; …… 题解列表 2023年12月05日 0 点赞 0 评论 147 浏览 评分:6.0
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路: 1、创建三个整形变量 2、输入他们 3、输出第二个整形变量参考代码:#include<iostream> using namespace std; int main(…… 题解列表 2023年07月14日 0 点赞 0 评论 179 浏览 评分:6.0
输出第二个数字 哈哈哈哈简直不要太基础 摘要:参考代码:#include<stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("…… 题解列表 2023年11月29日 2 点赞 0 评论 172 浏览 评分:6.0
[编程基础]输入输出练习之第二个数字-题解(C++代码) 摘要: ```cpp #include using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2020年10月04日 0 点赞 0 评论 563 浏览 评分:6.0
特殊解法,宏定义解法,你肯定没有见过(c语言代码) 摘要:```c #include #define fun(a,b,c) printf("%d",b) int main() { int n1, n2, n3; scanf("%d …… 题解列表 2024年08月07日 3 点赞 0 评论 168 浏览 评分:6.0
[编程基础]输入输出练习之第二个数字-数组解(C++代码) 摘要:参考代码:#include <iostream> using namespace std; int main() { int arr[3]; for(int i=0; i<3; ++i) …… 题解列表 2020年07月17日 0 点赞 0 评论 1715 浏览 评分:6.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2023年12月09日 0 点赞 0 评论 455 浏览 评分:6.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:题目让输入3个数,输出第2个输入的数注意事项:不是输出第2大的数参考代码:#include<iostream>using namespace std;int main(){ int a…… 题解列表 2022年04月27日 0 点赞 0 评论 774 浏览 评分:6.0
题目 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:定义一个数组,利用数组地址指定输出值。注意事项:数组定义为int型,而不是char。参考代码:#include<stdio.h>int main(){ int a[3]; for…… 题解列表 2022年06月30日 0 点赞 0 评论 109 浏览 评分:2.0
[编程基础]输入输出练习之第二个数字 (C语言代码) 摘要:解题思路:好好想想老师讲的内容,认真看一下题注意事项:别把“&”忘记了参考代码:#include<stdio.h> int main(){ int a,b,c; sc…… 题解列表 2019年01月30日 0 点赞 0 评论 592 浏览 评分:2.0