会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
PKU-Introduction-to-Computing-2023fall-4
博客园
首页
新随笔
联系
订阅
管理
2023年10月14日
第二次作业 数据类型、运算符和表达式
摘要: 求一元二次方程的根 注意\(\dfrac{-b+\sqrt{b^2-4ac}}{2a}\)不一定比\(\dfrac{-b-\sqrt{b^2-4ac}}{2a}\)大。 #include <stdio.h> #include <math.h> int main() { float a, b, c;
阅读全文
posted @ 2023-10-14 22:52 计算概论B-2023秋-4班
阅读(164)
评论(0)
推荐(0)
2023年10月10日
第一次作业 基本程序结构
摘要: 求累加和 #include <stdio.h> int main() { int k; scanf("%d", &k); /* 直接计算 double tot = k * (k + 1) / 2; printf("%.0lf,%.2lf\n", tot, tot / k); */ int tot =
阅读全文
posted @ 2023-10-10 23:20 计算概论B-2023秋-4班
阅读(111)
评论(0)
推荐(0)
公告