-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.13.cpp
71 lines (69 loc) · 950 Bytes
/
2.13.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
////限制条件寻找数字
//#include <stdio.h>
//void output(long int b,long int i);
//int main()
//{
// long int a,b,i;
// a=809;
// for(i=10;i<100;i++)
// {
// b=i*a;
// if(b>=1000&&b<=10000&&8*i<100&&9*i>=100)
// {
// output(b,i);
// }
// }
//
//
// return 0;
//}
//
//void output(long int b,long int i)
//{
// printf("\n%ld = 800 * %ld + 9 * %ld\n",b,i,i);
//}
//八进制转化成十进制
//#include <stdio.h>
//int main()
//{
// int n=0;
// int i=0;
// char a[20]={0};
// gets(a);
// while(a[i]!='\0')
// {
// n=n*8+a[i]-'0';
// i++;
// }
// printf("%d",n);
//
//
//
// return 0;
//}
#include <stdio.h>
int main()
{
int j=0;
int sum=0;
int s=4;//一位数的奇数有四个
for(j=1;j<8;j++)
{
if(j==2)
{
s*=7;
}
else if(j==1)
{
;
}
else
{
s*=8;
}
sum+=s;
printf("%d位数的奇数是%d\n",j,s);
}
printf("奇数的总个数是%d\n",sum);
return 0;
}