viod
viod
全部文章
分类
题解(71)
归档
标签
去牛客网
登录
/
注册
viod的博客
全部文章
(共75篇)
题解 | #杨辉三角的变形#
除了一二行输出为-1,后面输出的规律为2324的循环。 当n<3时,没有偶数,输出-1; 当n为奇数时,第一个偶数位置在第二,输出2; 当n为偶数且能被4整除时,第一个偶数位置在第三,输出3; 当n为偶数但不能被4整除时,偶数位置在第四,输出4 #include<stdio.h> ...
C
2022-03-30
0
298
题解 | #取近似值#
一行代码就行了,原加浮点数0.5然后取整就行了,因为取整只取整数部分的值 #include<stdio.h> int main(){ float num; while(~scanf("%f",&num)){ printf("%d\n",(int)(...
C
2022-03-29
1
248
题解 | #百钱买百鸡问题#
#include<stdio.h> int main(){ int cock,hen,chick; //公鸡,母鸡,小鸡 for(cock=0;cock<=20;cock++){ for(hen=0;hen<=34;hen++){ ...
C
2022-03-29
0
232
题解 | #完全数计算#
#include<stdio.h> #include<math.h> int main() { int num; while(~scanf("%d", &num)){ if(num==1){printf("0\n");break;} int count...
C
完全数
2022-03-29
0
256
题解 | #数字颠倒#
#include<stdio.h> int main(){ int n; char num[30]={0}; while(~scanf("%d",&n)){ if(n==0) {printf("0\n");break;} /...
C
2022-02-04
4
627
题解 | #取近似值#
C语言中round()库函数是用于对最接近该数字的给定值进行四舍五入,它接受一个数字并返回四舍五入的值,返回值类型为浮点型整数。 #include<stdio.h> int main(){ float n; while(~scanf("%f",&n)){ ...
C
2022-01-20
1
576
题解 | #计算某字符出现次数#
我的代码: #include<stdio.h> #include<string.h> int main(){ char s[1001],c; gets(s); //注:scanf()不能接受带空格的字符串 { int count=0,l...
C
2021-12-29
0
441
题解 | #简单密码#
俺太笨了,只会枚举: #include<stdio.h> int main(){ char c; while(~scanf("%c",&c)){ if(c=='Z') printf("a"); else if...
C
2021-12-28
21
1509
题解 | #求int型正整数在内存中存储时1的个数#
自己的代码思路是:输入的数据对2循环取余和取商,记录余数为1的次数: #include<stdio.h> int main(){ int m,i; while(scanf("%d",&m)!=EOF){ i=0; while(m&g...
C
2021-12-28
0
345
题解 | #特殊乘法#
因为:123 * 45 = 14 +15 +24 +25 +34+35 = 3*(4+5)+2*(4+5)+1*(4+5) 所以根据规律,代码如下: ">int main(){ int a,b,m,n,sum1,sum2; while(~scanf("%d %d",&a,&a...
C
2021-12-26
1
412
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页