2017年7月24日

NYOJ题目216 A problem is easy

摘要: //AC 心得:思考题目要求,寻找好合适的条件。 #include<stdio.h>int main(){ int T; scanf("%d",&T); while(T--) { int n,i; int a=0; scanf("%d",&n); for(i=1;(i+1)*(i+1)<=n+1;i 阅读全文

posted @ 2017-07-24 17:53 残夜半梦 阅读(108) 评论(0) 推荐(0) 编辑

NYOJ 题目241 字母统计

摘要: 描述: 现在给你一个由小写字母组成字符串,要你找出字符串中出现次数最多的字母,如果出现次数最多字母有多个那么输出最小的那个。 #include<stdio.h>#include<string.h>int main(){ int n,j,i; scanf("%d",&n); getchar(); wh 阅读全文

posted @ 2017-07-24 16:16 残夜半梦 阅读(157) 评论(0) 推荐(0) 编辑

NYOJ题目242 计算球体积

摘要: 描述 根据输入的半径值,计算球的体积。 #include<stdio.h>#define PI 3.1415926int main(){double r;while(scanf("%lf",&r)!=EOF){double v;v=4.0*PI*r*r*r/3.0;printf("%.0f\n",v 阅读全文

posted @ 2017-07-24 15:02 残夜半梦 阅读(135) 评论(0) 推荐(0) 编辑

NYOJ 题目113

摘要: 描述: 编写一个程序实现将字符串中的所有"you"替换成"we" #include<stdio.h>#include<string.h>int main(){ char s[1005]; int a,b,n,i; while(gets(s)!=NULL)//gets能接收含空格的字符串 { a=st 阅读全文

posted @ 2017-07-24 08:49 残夜半梦 阅读(104) 评论(0) 推荐(0) 编辑

导航