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 评论 817 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(void){ int s = 0, a; printf("输入项数"); scan…… 题解列表 2017年11月06日 2 点赞 0 评论 914 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char c[105],d[105],e[105]; cha…… 题解列表 2017年11月06日 1 点赞 1 评论 1568 浏览 评分:8.0
判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; int i; cin>>s…… 题解列表 2017年11月06日 1 点赞 0 评论 923 浏览 评分:6.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 评论 744 浏览 评分: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 评论 918 浏览 评分: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 评论 704 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("hello wolrd!\n"); return 0;}…… 题解列表 2017年11月07日 0 点赞 0 评论 701 浏览 评分: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