[编程基础]输入输出练习之第二个数字 (C语言代码) 摘要:解题思路:好好想想老师讲的内容,认真看一下题注意事项:别把“&”忘记了参考代码:#include<stdio.h> int main(){ int a,b,c; sc…… 题解列表 2019年01月30日 0 点赞 0 评论 671 浏览 评分:2.0
题目 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:定义一个数组,利用数组地址指定输出值。注意事项:数组定义为int型,而不是char。参考代码:#include<stdio.h>int main(){ int a[3]; for…… 题解列表 2022年06月30日 0 点赞 0 评论 188 浏览 评分:2.0
[编程基础]输入输出练习之第二个数字-题解(C语言代码) 摘要:解题思路:这题需要用个循环,循环三次,再用if,抽出第二次的数,就OK啦注意事项:参考代码:#include<stdio.h>int main(){ int a,i; i=0; while…… 题解列表 2020年11月12日 0 点赞 0 评论 261 浏览 评分:0.0
1806C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int b; scanf("%*d %d %*d",&b); printf ("%d",b…… 题解列表 2021年11月01日 0 点赞 0 评论 261 浏览 评分:0.0
第二个数字 摘要:解题思路:注意事项:使用main函数,注意空格。参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c)…… 题解列表 2021年11月29日 0 点赞 0 评论 186 浏览 评分:0.0
输出中间的数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d\n",b); …… 题解列表 2021年12月07日 0 点赞 0 评论 256 浏览 评分:0.0
不是吧不是吧这也看? 摘要:解题思路:把手拿出来注意事项:睁开眼睛参考代码:package com.itheima;import java.util.Scanner;public class Text28 { public st…… 题解列表 2021年12月17日 0 点赞 0 评论 352 浏览 评分:0.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:num = input().split() print(num[1])…… 题解列表 2024年04月01日 0 点赞 0 评论 279 浏览 评分:0.0
使用nextLine解决问题 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月15日 0 点赞 0 评论 135 浏览 评分:0.0
[编程基础]输入输出练习之第二个数字-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int n; scanf("%*d %d %*d",&n); printf("%d",n);}…… 题解列表 2020年08月28日 0 点赞 0 评论 384 浏览 评分:0.0