2012年12月15日

编程实现x的y次方的最后三位数(x与y至少是两位数以上)

摘要: Sample Input: 13**13(以两个**代表次方) 13**20Sample Output: 253 801 1 #include <stdio.h> 2 int main() 3 { 4 int x,y,i,h; 5 while(scanf("%d%d",&x,&y)!=-1) 6 { 7 8 x=x%1000; 9 for(h=1,i=0;i<y;i++)10 {11 12 h*=x;13 h%=1000;... 阅读全文

posted @ 2012-12-15 21:59 mycapple 阅读(854) 评论(1) 推荐(0) 编辑

三天打鱼两天晒网

摘要: 题目描述:中国有句俗语叫“三天打鱼两天晒网”。某人从1990年1月1日起开始“三天打鱼两天晒网”,问这个人在以后的某一天中是“打鱼”还是“晒网”。Sample Input: Enter year/month/day:1991 10 25 Enter year/month/day:1992 10 25 Enter year/month/day:2011 12 10Sample Output:He was fishing at day. He was sleeping at day. He was sleeping at day问题分析与算法设计根据题意可以将解题过程分为三步:1)计算... 阅读全文

posted @ 2012-12-15 21:10 mycapple 阅读(951) 评论(2) 推荐(2) 编辑

导航