C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:看了大家的代码觉得一个个不停地赋值、每个值都+4有点麻烦...类似这样的:char c1='C',c2 = 'h',c3= 'i',c4 = …… 题解列表 2017年11月06日 5 点赞 0 评论 964 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:int main(void){ int a,b, s = 0,x=1; printf("输入项数和要计算的数:"); scanf_s("%d,%d", &a,&b); f…… 题解列表 2017年11月06日 0 点赞 0 评论 634 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ double f,c; scanf("%lf",&f); c=5*(f-32)/9; printf("%.2f",c);}注…… 题解列表 2017年11月06日 0 点赞 0 评论 816 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pri…… 题解列表 2017年11月06日 1 点赞 0 评论 743 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pri…… 题解列表 2017年11月06日 1 点赞 0 评论 917 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#iclude<stdio.h>main(){int a,b,c;scanf("%d%d",&a,&b);a+b=c;printf("%d+%d=%d",a,b,c);return 0;}…… 题解列表 2017年11月07日 0 点赞 0 评论 702 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("hello wolrd!\n"); return 0;}…… 题解列表 2017年11月07日 0 点赞 0 评论 700 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("he…… 题解列表 2017年11月07日 0 点赞 0 评论 763 浏览 评分:0.0
非常简单的算法,题解1049:C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> struct Date { int year; int month; int …… 题解列表 2017年11月07日 0 点赞 0 评论 815 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[100]; int i,j,k,n,m,sum1,sum2,x; whi…… 题解列表 2017年11月07日 0 点赞 0 评论 851 浏览 评分:0.0