-
讨论 (0)
这个用户还没有发布过讨论 -
贡献 (0)
啊哦,这个用户还没贡献过题目和题解~ -
递交 (153)
最近递交
状态 题目 递交者 时间 内存 语言 递交时间 P1130 球反弹高度(2) 沈琪悦 4ms 364.0 KiB C++ 2021-12-18 13:14:40 P1009 数据交换 沈琪悦 3ms 388.0 KiB C++ 2021-12-05 13:16:50 P1063 约瑟夫问题 沈琪悦 4ms 376.0 KiB C++ 2021-12-05 13:16:15 P1110 冰雹猜想(1) 沈琪悦 3ms 404.0 KiB C++ 2021-11-28 10:17:23 P1097 超级素数 沈琪悦 3ms 396.0 KiB C++ 2021-11-28 09:51:13 P1049 *组成的图形(1) 沈琪悦 3ms 376.0 KiB C++ 2021-11-14 14:26:14 P1025 计算某日期的天数*** 沈琪悦 9ms 408.0 KiB C++ 2021-10-31 20:26:32 P1008 温度转换 沈琪悦 4ms 400.0 KiB C++ 2021-10-30 21:51:20 P1009 数据交换 沈琪悦 3ms 424.0 KiB C++ 2021-10-30 21:45:18 P1007 求平均值 沈琪悦 4ms 384.0 KiB C++ 2021-10-30 21:36:37
个人简介
#include <iostream>
#include <cstdio>
using namespace std;
int c(int x)
{
int max=0;
while(x)
{
x/10;
if(x==3)
{
max=1;
break;
}
}
return max;
}
int main()
{
int x,y,m,max;
const int f=30;
int a[f];
cin>>x>>y;
for(int t=x;t<=y;t++)
{
if(c(t)==1)
{
max++;
a[x]=f;
}
x++;
}
cout<<max<<endl;
int n,s;
for(s=0;s<n-1;s++)
{
printf("%-5d",a[s]);
n++;
if(n%5==0)
{
cout<<endl;
n=0;
}
}
return 0;
}