博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
新手村之循环!循环!循环!
阅读量:5319 次
发布时间:2019-06-14

本文共 1669 字,大约阅读时间需要 5 分钟。

P1008 三连击 代码:

总:优美的暴力或打表。

var  i,j,a,b,c:longint;  v:array [0..10] of boolean;  f:boolean;begin  for i:=123 to 345 do    begin      fillchar(v,sizeof(v),0);      a:=i; b:=i*2; c:=i*3;      for j:=1 to 3 do        begin          v[a mod 10]:=true;          v[b mod 10]:=true;          v[c mod 10]:=true;          a:=a div 10; b:=b div 10; c:=c div 10;        end;      f:=true;      for j:=1 to 9 do        f:=f and v[j];      if f then writeln(i,' ',i*2,' ',i*3);    end;{  writeln('192 384 576');  writeln('219 438 657');  writeln('273 546 819');  writeln('327 654 981');}end.

P1035 级数求和 代码:

总:暴力。

var  a:real;  s,i,n:longint;begin  readln(n);  i:=2; a:=1; s:=1;  while a<=n do    begin      a:=a+1/i;      s:=s+1;      i:=i+1;    end;  write(s);end.

P1307 数字反转 代码:

总:字符串倒着输出。

var  s:string;  l,i:longint;begin  readln(s);  if s[1]='-' then    begin      write('-');      delete(s,1,1);    end;  l:=length(s);  while (s[l]='0') and (l>1) do dec(l);  for i:=l downto 1 do    write(s[i]);end.

P1423 小玉在游泳 代码:

总:暴力。

var  i:longint;  n,m:real;begin  read(n); m:=2;  i:=0;  while n>0 do    begin      n:=n-m;      m:=m*0.98;      inc(i);    end;  write(i);end.

P1424 小鱼的航程(改进版)

总:暴力。

var  n,m,ans:longint;begin  readln(n,m); ans:=0;  while m>0 do    begin      if n>7 then n:=n-7;      dec(m);      if n<6 then ans:=ans+250;      inc(n);    end;  write(ans);end.

P1980 计数问题

总:同上。

var  n,i,l,j,m:longint;  a:array ['0'..'9'] of longint;  s:string;begin  read(n,m);  for i:=1 to n do    begin      str(i,s);      l:=length(s);      for j:=1 to l do        inc(a[s[j]]);    end;  write(a[chr(m+48)]);end.

总结:

暴力出正解。(都是水题啊)

转载于:https://www.cnblogs.com/zyx-crying/p/9319526.html

你可能感兴趣的文章
linux 下安装python3
查看>>
js中style,currentStyle和getComputedStyle的区别
查看>>
技巧类
查看>>
LOJ6036编码
查看>>
day11_多线程(多线程安全问题)
查看>>
Diary of Codeforces Round #402 (Div. 2)
查看>>
产品体验成就产品
查看>>
DOM 表单应用
查看>>
C#+OpenGL+FreeType显示3D文字(2) - 用GLSL+VBO绘制文字
查看>>
为什么eclipse中启动tomcat后,浏览器中出现404?
查看>>
js压缩
查看>>
JS实现手机访问pc网址自动跳转到wap网站
查看>>
How to create movie with pictures
查看>>
HTML 5 拖放(Drag 和drop)
查看>>
shell_exec() has been disabled for security reasons错误怎么解决?
查看>>
【福音】开发者可接入微信公众平台设备功能了
查看>>
springCloud学习-消息总线(Spring Cloud Bus)
查看>>
centos7 自动备份 mysql
查看>>
用JS判断两个数字的大小
查看>>
【luogu P2298 Mzc和男家丁的游戏】 题解
查看>>