当前位置:网站首页>Xiaoqingtai officially set foot on the third day of no return
Xiaoqingtai officially set foot on the third day of no return
2020-11-08 13:52:00 【osc_3vp99iw6】
Xiaoqingtai officially set foot on the road of no return 3 God
Look at the notes before
Look at the current level
I can't help but flow down Regretful Tears
Do your homework. It's fun to do it ( Catch ) Cause ( ear ) Bo ( Scratch ) Bo ( Gill )
I'd like to have my hair pulled out
There's so much bullshit
Well, I'm going to record every simple question that I just can't do TAT
- Given two numbers , Find the greatest common divisor of these two numbers
< I hate common divisors >
#include <stdio.h>
int main()
{
int a,b,c,i;
scanf("%d%d",&a,&b);
if (a < b)
{
c = a; a = b; b = c;
}
for (i = b;i <= a; i--)
{
if (a % i == 0 && b % i == 0)
{
printf(" The greatest common divisor is :");
printf("%d\n",i);
break;
}
}
return 0;
}
- Print 1000 Year to 2000 Leap year between years
< I also hate leap year >
#include <stdio.h>
int main()
{
int i;
printf(" Interval leap years have :");
for(i=1000;i<2001;i+=4)
{
if(i%4==0)
{
printf("%d\n",i);
}
}
return 0;
}
- Calculation 1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 Value , Print out the results
< It's practical to do this problem 40min I'm stone >
Calculation 1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 Value , Print out the results
#include <stdio.h>
int main()
{
int i;
float sum=1;
printf(" The sum of the required items is :");
for(i=2;i<=100;i++)
{
if(i%2==0)
{
sum+=-1.0/i;
}
else{
sum+=1.0/i;
}
}
printf("%f\n",sum);
return 0;
}
- 1 To 100 How many numbers appear in all integers of 9
#include <stdio.h>
int main()
{
int i,j=0;
printf(" Numbers 9 The number of :");
for(i=1;i<101;i++)
{
if(i%10==9)
{
j++;
}
}
printf("%d",j);
return 0;
}
- Print 100~200 The prime between
< prime number = Abnormal number >
#include <stdio.h>
int main()
{
int i,j;
printf(" Prime numbers have intervals :");
for(i=100;i<=200;i++)
{
for(j=2;j<i;j++)
{
if(i%j==0)
{
break;
}
}
if(i==j)
{
printf("%d\n",i);
}
}
return 0;
}
- Output... On the screen 99 Multiplication table
#include<stdio.h>
int main()
{
int i=0;
for(i=1;i<=9;i++)
{
int j=0;
for(j=1;j<=i;j++)
{
printf("%d*%d=%d ",i,j,i*j);
}
printf("\n");
}
return 0;
}
- seek 10 The maximum of integers
#include <stdio.h>
int main()
{
int a[11],i;
for(i=1;i<=10;i++)
{
scanf("%d",&a[i]);
}
a[0]=a[1];
for(i=1;i<=10;i++)
{
if(a[i]>=a[0]) a[0]=a[i];
}
printf(" The maximum value is :");
printf("%d\n",a[0]);
return 0;
}

Total time 120min;
total error n Time ;
Total collapse n+1 Time ;
版权声明
本文为[osc_3vp99iw6]所创,转载请带上原文链接,感谢
边栏推荐
- The first open source Chinese Bert pre training model in the financial field
- On DSA of OpenGL
- When kubernetes encounters confidential computing, see how Alibaba protects the data in the container! (Internet disk link attached)
- Introduction to mongodb foundation of distributed document storage database
- Restfulapi learning notes -- father son resources (4)
- Golang 系统ping程序探测存活主机(任意权限)
- 2035我们将建成这样的国家
- Bccoin tells you: what is the most reliable investment project at the end of the year!
- BCCOIN告诉您:年底最靠谱的投资项目是什么!
- STM32CubeIDE下载安装-GPIO基本配置操作-Debug调试(基于CMSIS DAP Debug)
猜你喜欢

When kubernetes encounters confidential computing, see how Alibaba protects the data in the container! (Internet disk link attached)

Flink从入门到真香(6、Flink实现UDF函数-实现更细粒度的控制流)

laravel8更新之维护模式改进

Major changes in Huawei's cloud: Cloud & AI rises to Huawei's fourth largest BG with full fire

The birth of a new integrated memory and computing chip is conducive to the application of artificial intelligence~

软件开发中如何与人协作? | 每日趣闻

Share the experience of passing the PMP examination

On the confirmation of original data assets

华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧

Enabling education innovation and reconstruction with science and technology Huawei implements education informatization
随机推荐
wanxin finance
2035我们将建成这样的国家
Python基础语法
Or talk No.19 | Facebook Dr. Tian Yuandong: black box optimization of hidden action set based on Monte Carlo tree search
Windows下快递投递柜、寄存柜的软件初探
Golang 系统ping程序探测存活主机(任意权限)
How to solve the difference between NAT IP and port IP
This paper analyzes the top ten Internet of things applications in 2020!
Alibaba cloud accelerates its growth and further consolidates its leading edge
Don't look! Full interpretation of Alibaba cloud's original data lake system! (Internet disk link attached)
应届生年薪35w+ !倒挂老员工,互联网大厂薪资为何越来越高?
Ali! Visual computing developer's series of manuals (with internet disk link)
别再在finally里面释放资源了,解锁个新姿势!
AQS analysis
The network adapter could not establish the connection
Implementation of verification code recognition in Python opencv pytesseract
浅谈单调栈
Flink从入门到真香(10、Sink数据输出-Elasticsearch)
Improvement of maintenance mode of laravel8 update
漫画:寻找股票买入卖出的最佳时机(整合版)