C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define MAX 100int main(){ int a,b,c,d; int i; char p[MAX]; a=b=c=d…… 题解列表 2017年07月17日 0 点赞 0 评论 984 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:#include<stdio.h> //回车键 ASCII值是10.int main(){ int a=0; int b=0; int c=0; int d=0; char e; do { e=ge…… 题解列表 2017年07月06日 1 点赞 0 评论 1014 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (Java代码) 摘要:import java.util.Scanner;public class Main { public static void cs(String a){ …… 题解列表 2017年07月04日 9 点赞 1 评论 1264 浏览 评分:8.7
C语言程序设计教程(第三版)课后习题6.2 (C语言描述和c++代码) 摘要:c实现#include <stdio.h>int main(){ char ch; int count_of_letter=0; int count_of_number=0; int count_of…… 题解列表 2017年06月08日 2 点赞 2 评论 1737 浏览 评分:8.8
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:int main(){ //思路是通过各类型字符的ASCLL码的范围来确定输入的字符的类型。int a=0, b=0, c=0, d=0; char s; whil…… 题解列表 2017年06月08日 31 点赞 11 评论 3337 浏览 评分:0.0