不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int jisuan(int a);int main(){ int n,a; scanf("%d",&n); whil…… 题解列表 2017年07月31日 0 点赞 0 评论 772 浏览 评分:8.0
【绝对值排序】 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<math.h>int main(){ int n,a[100],i,j,b; while(scanf("%d",&n)!…… 题解列表 2017年07月31日 0 点赞 2 评论 518 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#define charge(a,b){int t= a;a=b;b=t;}//宏定义交换函数int main(){ int a,…… 题解列表 2017年07月31日 0 点赞 0 评论 678 浏览 评分:7.3
第一 摘要:#include<stdio.h>int Abs(int);int main(){ int i,j,num,abs_max=0,max=0,abs_num=0; int max_i = 1…… 题解列表 2017年07月31日 0 点赞 0 评论 1011 浏览 评分:0.0
【计算球体积】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.1415int main(){ float r,v; while(scanf("%f",&r)==…… 题解列表 2017年07月30日 1 点赞 0 评论 1170 浏览 评分:7.0
【蟠桃记】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int jisuan(int n);int main(){ int n,x; while(scanf("%d",&n)==1…… 题解列表 2017年07月30日 0 点赞 0 评论 905 浏览 评分:0.0
【计算两点间的距离】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,x2,y1,y2,d; while(scanf(…… 题解列表 2017年07月30日 1 点赞 1 评论 1251 浏览 评分:9.3
整除问题 (C语言代码) 摘要:#include <stdio.h>int main(){ int min,max,factor,i; scanf("%d%d%d",&min,&max,&factor); if(f…… 题解列表 2017年07月30日 0 点赞 0 评论 1044 浏览 评分:0.0
Lucky Word (C++代码) 摘要:解题思路:统计并判断(max-min)差是否为质数质素依旧打表注意事项:字母不存在的不算hhh参考代码:#include <stdio.h> int main() { int ch; …… 题解列表 2017年07月30日 2 点赞 0 评论 1113 浏览 评分:6.3
拆分位数 (C++代码)用char简单粗暴,嗯 摘要:解题思路:用char简单粗暴,嗯注意事项:参考代码:#include <stdio.h> int main() { char a, b, c; while (scanf("%…… 题解列表 2017年07月30日 4 点赞 4 评论 1164 浏览 评分:9.3