[编程基础]输入输出练习之第二个数字-题解(C语言代码) 摘要:解题思路:这题需要用个循环,循环三次,再用if,抽出第二次的数,就OK啦注意事项:参考代码:#include<stdio.h>int main(){ int a,i; i=0; while…… 题解列表 2020年11月12日 0 点赞 0 评论 194 浏览 评分:0.0
输入输出练习之第二个数字 摘要:解题思路:对于已经知道要找第几个数,直接数组存取,很方便注意事项:参考代码:#include<stdio.h>int main(){ int a[4]; for(int i=0;i<4;i…… 题解列表 2022年06月30日 0 点赞 0 评论 196 浏览 评分:0.0
[编程基础]输入输出练习之第二个数字 (C语言代码) 摘要:解题思路:好好想想老师讲的内容,认真看一下题注意事项:别把“&”忘记了参考代码:#include<stdio.h> int main(){ int a,b,c; sc…… 题解列表 2019年01月30日 0 点赞 0 评论 598 浏览 评分:2.0
输入输出练习之第二个数字(小白易懂版) 摘要:解题思路:这道题还是很简单的了,从main函数开始,定义变量,最后再输入输出就好了。注意事项:在输入的格式中,“%d %d %d"中的格式中间有两个空格,用键盘敲入的时候,输入的数字中间也要有空格,不…… 题解列表 2021年11月12日 0 点赞 0 评论 393 浏览 评分:2.0
题目 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:定义一个数组,利用数组地址指定输出值。注意事项:数组定义为int型,而不是char。参考代码:#include<stdio.h>int main(){ int a[3]; for…… 题解列表 2022年06月30日 0 点赞 0 评论 118 浏览 评分:2.0
[编程基础]输入输出练习之第二个数字-题解(C++代码) 摘要: ```cpp #include using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2020年10月04日 0 点赞 0 评论 573 浏览 评分: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 评论 192 浏览 评分: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 评论 465 浏览 评分: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 评论 1718 浏览 评分:6.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; …… 题解列表 2023年12月05日 0 点赞 0 评论 150 浏览 评分:6.0