C语言程序设计教程(第三版)课后习题5.5 (Java代码) 摘要:import java.util.Scanner;public class Main { public static int XY(int x){ if…… 题解列表 2017年07月04日 2 点赞 0 评论 1395 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)(答案错误解析) 摘要:#include<stdio.h> int main() { int x, y; scanf("%d", &x); if(x<1)y =x; if(x>=10)y =3*x-11; el…… 题解列表 2017年06月15日 1 点赞 3 评论 798 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 根据公式进行数学运算 摘要:#include<stdio.h> int main() { int a,b; printf("\n请输入y值:"); scanf("%d",&a); if…… 题解列表 2017年06月10日 0 点赞 2 评论 514 浏览 评分:0.0
优质题解 C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路以及注意事项:本题主要是if语句的应用,本题有两次判断,if()里面一次,else if()里面一次,最后的else不用加括号判断,因为前面的都不执行,就执行else后面的语句了。注意else…… 题解列表 2017年06月10日 53 点赞 253 评论 32804 浏览 评分:8.8
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:#include<stdio.h>int main(){ int x, y; scanf("%d", &x); if (x<1) x = y; if (1 <= x&&x<10) y = 2 * …… 题解列表 2017年06月07日 0 点赞 1 评论 421 浏览 评分:0.0