C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { unsigned int num; scanf("%3d", &num); …… 题解列表 2017年09月12日 0 点赞 0 评论 665 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:利用switch(表达式1){ case 常量表达式1: 语句1;break; case 常量表达式2: 语句2;break; case 常量表达式3: 语句3;break…… 题解列表 2017年09月18日 1 点赞 0 评论 1007 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用switch语句对不同分数做出判断注意事项:100分需单独处理参考代码:#include<stdio.h> int main() { int a; scanf("%…… 题解列表 2017年10月11日 0 点赞 0 评论 658 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int x,y; scanf("%d",&x); if (x<60)y=&#…… 题解列表 2017年10月14日 5 点赞 1 评论 959 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:多分支语句switch() case注意事项:注意100这个,,,需要注意的在代码中已经注释出来了参考代码:#include<stdio.h>int main(){ int a; …… 题解列表 2017年10月18日 0 点赞 0 评论 649 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int s; scanf("%d",&s); switch(s/10) { cas…… 题解列表 2017年10月19日 1 点赞 0 评论 697 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:so easy注意事项:参考代码:#include<stdio.h>int main(){ int x;char a; scanf("%d",&x); if(x<60) a…… 题解列表 2017年10月28日 0 点赞 0 评论 713 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:把平时最常用的数学思路用入门c表达出来注意事项:不要只判断一项,多判断几项。参考代码:void main(){int a; scanf("%d",&a); if(a>=90) printf(…… 题解列表 2017年11月10日 0 点赞 0 评论 645 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int result; char LV; scanf("%d",&result); if(result>=0…… 题解列表 2017年12月09日 0 点赞 0 评论 1223 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2017年12月09日 18 点赞 0 评论 1524 浏览 评分:6.0