编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,F; scanf("%f",&F); c=5*(F-32)/9; pri…… 题解列表 2022年11月21日 0 点赞 0 评论 244 浏览 评分:0.0
编写题解 1007: [编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) y=x; els…… 题解列表 2022年11月21日 0 点赞 0 评论 226 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>=0 && x<=100) …… 题解列表 2022年11月21日 0 点赞 0 评论 195 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,i,num,result; scanf("%d",&i); if(i>=0 &…… 题解列表 2022年11月21日 0 点赞 0 评论 221 浏览 评分:0.0
编写题解 1020: [编程入门]猴子吃桃的问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,num=1,result; scanf("%d",&n); for(i=1;i<n;++i…… 题解列表 2022年11月21日 0 点赞 0 评论 244 浏览 评分:0.0
编程入门-求和训练 摘要: 注意for循环的 表达式2 用|| 而不是&& 只要还有一个没满足 就继续循环下去 参考代码:#include<stdio.h> int main(){ int a; int b; i…… 题解列表 2022年11月21日 0 点赞 0 评论 187 浏览 评分:0.0
编写题解 2998: 电影票 摘要:解题思路:注意事项:参考代码: int a; scanf("%d",&a); printf("%d %d",a,a*10);…… 题解列表 2022年11月21日 0 点赞 0 评论 432 浏览 评分:0.0
编写题解 2181: 信息学奥赛一本通T1005-地球人口承载力估计 摘要:解题思路:注意事项:参考代码: int x, a, y, b; float z = 0; scanf("%d %d %d %d", &x, &a, &y, &b) 题解列表 2022年11月21日 0 点赞 0 评论 458 浏览 评分:0.0
编写题解 1809: [编程基础]输入输出练习之精度控制2 摘要:解题思路:注意事项:参考代码: double d; scanf("%lf", &d); printf("%.12f", d);…… 题解列表 2022年11月21日 0 点赞 0 评论 321 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,i,num,result; scanf("%d",&i); if(i>=0 &…… 题解列表 2022年11月21日 0 点赞 0 评论 212 浏览 评分:0.0