首页 > 其他 > 详细

99小乘法以及1000-2000之间的闰年

时间:2015-12-03 02:22:24      阅读:187      评论:0      收藏:0      [点我收藏+]

//#include<stdio.h>
//#include<math.h>
//int main()
//{
//int i = 0;
//int j = 0;
//
//
//
// for (i = 1; i <= 9; i++)
// {
//  for (j = 1; j <= i; j++)
//  {
//
//   printf("%d*%d=%2d ",i, j, i*j);
//  }
//  printf("\n");
// }
// system("pause");
// return;
//
//}
//

 

 

 


//#include<stdio.h>
//#include<math.h>
//int main()
//{
// int a = 0;
// int count = 0;
// for (a = 1000; a <= 2000; a++)
// {
//  if ((a % 4 == 0) && (a % 100 != 0))
//  {
//
//   printf("%d\t", a);
//   count++;
//  }
//  else if (a % 400 == 0)
//  {
//
//   printf("%d\t", a);
//   count++;
//  }
// }
// printf("count=%d", count);
// system("pause");
// //return;
//}

99小乘法以及1000-2000之间的闰年

原文:http://10942013.blog.51cto.com/10932013/1719026

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!