牛客161598119号
牛客161598119号
全部文章
分类
题解(98)
归档
标签
去牛客网
登录
/
注册
牛客161598119号的博客
全部文章
(共97篇)
题解 | #带空格直角三角形图案#
/* * * * * * * * * * * * * * * * */ #include<stdio.h> int main(void) { int n; while((scanf("%d",&n))!=EOF)...
C
2021-12-10
0
359
题解 | #简单计算器#
#include<stdio.h> int main(void) { double a,b;//精度问题导致用float无法通过,具体原因得去研究一下IEEE754浮点数表示 char sf; scanf("%lf%c%lf",&a,&sf,&am...
C
2021-12-10
0
267
题解 | #计算一元二次方程#
#include<stdio.h> #include<math.h>//因为要用到开平方,引入math.h头文件 #define DIS b*b-4*a*c//宏定义一个判别式 int main(void) { float a,b,c; while((scan...
C
2021-12-10
0
418
题解 | #竞选社长#
#include<stdio.h> int main(void) { char s; int coutA=0,coutB=0; while((s=getchar())!='0')//关键是要看输入符号结束的设定 { if(s=='A') ...
C
2021-12-09
7
498
题解 | #争夺前五名#
#include<stdio.h> int main(void) { int n; int score[150]={0};//根据数据量定义数组 scanf("%d",&n); for(int i=0;i<n;i++)//输入的同时也做好排序...
C
2021-12-09
0
427
题解 | #进制A+B#
#include<stdio.h> int main(void) { int a,b,result; scanf("%x %o",&a,&b);//注意怎么输入十六进制和八进制 result=a+b; printf("%d",result)...
C
2021-12-09
11
948
题解 | #KiKi和酸奶#
#include<stdio.h> int main(void) { int n,h,m; while((scanf("%d %d %d",&n,&h,&m))!=EOF)//多组输入 { if(m%h>0)//m%h...
C
2021-12-09
0
338
题解 | #2的n次方计算#
#include<stdio.h> int main(void) { int n; scanf("%d",&n); printf("%d",1<<n);//注意n的范围是从0-31 return 0; }
C
2021-12-09
0
297
题解 | #大小写转换#
#include<stdio.h> int main(void) { char s; // scanf("%c",&s);//一开始用的版本,不懂使用getchar()来输入到s while((s=getchar())!=EOF)// { ...
C
2021-12-09
5
510
题解 | #计算球体的体积#
#include<stdio.h> #define PI 3.1415926//用一个宏定义PI,用来取代繁杂的3.1415926 #define V(r) 4.0/(3)*(PI*r*r*r)//用一个V(r)来宏定义求体积公式 int main(void) { double ...
C
2021-12-09
1
496
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页