您的位置:首页 > 其它

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

2015-12-02 20:33 281 查看
//#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;
//}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  闰年