#include void main(){ int a,b,c,t; printf("请输入三个整数:\n"); scanf("%d,%d,%d",&a,&b,&c); if(a<b) { t=a; a=b; b=t; } if(a<c) { t=a; a=c; ...
分类:
其他好文 时间:
2014-08-14 23:14:04
阅读次数:
217
#include void main(){ /*方法一 int score; printf("请输入分数:\n") ; scanf("%d",&score); if (score>=90&&score=80) { printf("等级为B\n") ; } else if (sco...
分类:
其他好文 时间:
2014-08-14 23:09:46
阅读次数:
137
//发头控制浏览器不要缓存 response.setDateHeader("expries", -1); response.setHeader("Cache-Control", "no-cache"); response.setHeader("Pragma", "no-cache");
分类:
其他好文 时间:
2014-08-14 23:07:56
阅读次数:
138
运输公司对用户计算运费.路程越远每公里运费越低.每公里每吨货物的基本运费为p = 3,货物重为w,距离为s,折扣为d,则总运费f的计算公式为f=p*w*s*(1-d)。折扣规则如下: s void main(){ double p=3; double w,s,d,f; ...
分类:
其他好文 时间:
2014-08-14 23:07:26
阅读次数:
298
#include void main(){ int weekday; printf("请输入星期几:\n"); scanf("%d",&weekday); switch(weekday) { case 1: printf("星期一\n"); break; case 2: printf("...
分类:
其他好文 时间:
2014-08-14 23:07:16
阅读次数:
231
#include void main(){ int age; printf("请输入年龄:\n"); scanf("%d",&age); switch(age) { case 2: case 3: printf("孩子进入小班\n"); break; case 4: printf...
分类:
其他好文 时间:
2014-08-14 23:05:06
阅读次数:
175
某企业员工奖金与员工的销售挂钩,其规则如下(超出部分):销售额 void main(){ double m,s,d; printf("请输入您的销售额:"); scanf("%lf",&s); if(s10&&s20&&s40&&s60&&s100) { d=1...
分类:
其他好文 时间:
2014-08-14 23:03:09
阅读次数:
187
Description
Before bridges were common, ferries were used to transport cars across rivers. River ferries, unlike their larger cousins, run on a guide line and are powered by the river's current. Ca...
分类:
其他好文 时间:
2014-08-14 20:34:49
阅读次数:
349
utf-8吗表中所有汉字的区间的正则表达式[\u4e00-\u9fa5]汉字常用字unicode吗表String base ="\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u...
分类:
其他好文 时间:
2014-08-14 20:11:49
阅读次数:
181
Gc.Db和Gc.Cache相关文章我已经写有一段时间了,谢谢大家关注。最近看了以前写的Gc.Db和SimpleOrm,对这两个框架作了优化和整合。此篇文章主要Gc.Db优化内容作下介绍。 下篇文章会配合着我整理的对Memcached和Redis分布式缓存框架Gc.CacheGc.Db和Gc.Ca....
分类:
数据库 时间:
2014-08-14 19:56:29
阅读次数:
281