当前位置:网站首页>小青台正式踏上不归路的第3天
小青台正式踏上不归路的第3天
2020-11-08 13:52:00 【osc_3vp99iw6】
小青台正式踏上不归路的第3天
看看之前的笔记
再看看现在的水平
不禁流下悔恨的泪水
做个作业做的兴(抓)致(耳)勃(挠)勃(腮)
恨不得拔光头发
屁话真多
好了我要记录每一道明明简单我就是做不出来的题TAT
- 给定两个数,求这两个数的最大公约数
<我讨厌公约数>
#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("最大公约数为:");
printf("%d\n",i);
break;
}
}
return 0;
}
- 打印1000年到2000年之间的闰年
<我还讨厌闰年>
#include <stdio.h>
int main()
{
int i;
printf("区间闰年有:");
for(i=1000;i<2001;i+=4)
{
if(i%4==0)
{
printf("%d\n",i);
}
}
return 0;
}
- 计算1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 的值,打印出结果
<做这道题属实用了快40min我是石头>
计算1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 的值,打印出结果
#include <stdio.h>
int main()
{
int i;
float sum=1;
printf("所求项目之和为:");
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到 100 的所有整数中出现多少个数字9
#include <stdio.h>
int main()
{
int i,j=0;
printf("数字9的个数有:");
for(i=1;i<101;i++)
{
if(i%10==9)
{
j++;
}
}
printf("%d",j);
return 0;
}
- 打印100~200之间的素数
<素数=变态数>
#include <stdio.h>
int main()
{
int i,j;
printf("区间素数有:");
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;
}
- 在屏幕上输出99乘法口诀表
#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;
}
- 求10 个整数中最大值
#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("最大值为:");
printf("%d\n",a[0]);
return 0;
}
总耗时120min;
总error n次;
总崩溃 n+1次;
版权声明
本文为[osc_3vp99iw6]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4307541/blog/4708183
边栏推荐
- 小米、OPPO在欧洲市场继续飙涨,小米更是直逼苹果
- What can your cloud server do? What is the purpose of cloud server?
- We made a medical version of the MNIST dataset, and found that the common automl algorithm is not so easy to use
- 软件开发中如何与人协作? | 每日趣闻
- Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
- 【Python 1-6】Python教程之——数字
- 阿里出品!视觉计算开发者系列手册(附网盘链接)
- Hematemesis! Alibaba Android Development Manual! (Internet disk link attached)
- wanxin finance
- Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
猜你喜欢
What is the database paradigm
应届生年薪35w+ !倒挂老员工,互联网大厂薪资为何越来越高?
How to cooperate with people in software development? |Daily anecdotes
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
阿里云视频云技术专家 LVS 演讲全文:《“云端一体”的智能媒体生产制作演进之路》
It's worth seeing! EMR elastic low cost offline big data analysis best practice (with network disk link)
技术总监7年总结,如何进行正确的沟通?
Rust: performance test criteria Library
2035我们将建成这样的国家
原创 | 数据资产确权浅议
随机推荐
大龄程序员没有出路吗?
我们做了一个医疗版MNIST数据集,发现常见AutoML算法没那么好用
Harbor项目高手问答及赠书活动
金融领域首个开源中文BERT预训练模型,熵简科技推出FinBERT 1.0
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Rabbitmq (1) - basic introduction
Ali! Visual computing developer's series of manuals (with internet disk link)
This paper analyzes the top ten Internet of things applications in 2020!
The first open source Chinese Bert pre training model in the financial field
你的云服务器可以用来做什么?云服务器有什么用途?
3、 The parameters of the function
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Rust: performance test criteria Library
Implementation of verification code recognition in Python opencv pytesseract
The network adapter could not establish the connection
Get PMP certificate at 51CTO College
当Kubernetes遇到机密计算,看阿里巴巴如何保护容器内数据的安全!(附网盘链接)
来自朋友最近阿里、腾讯、美团等P7级Python开发岗位面试题
Ali teaches you how to use the Internet of things platform! (Internet disk link attached)
rabbitmq(一)-基础入门