1068: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { double f; for(int i=-100;i<=150;…… 题解列表 2022年06月22日 0 点赞 0 评论 561 浏览 评分:0.0
简单输出易懂求圆的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double r, p; double S; p = 3.1415926; scanf("%lf", &r); …… 题解列表 2022年06月22日 0 点赞 0 评论 335 浏览 评分:0.0
简单输出易懂长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; int C; int S; scanf("%d %d", &a,&b); C = 2 * …… 题解列表 2022年06月22日 0 点赞 0 评论 349 浏览 评分:0.0
简单输出易懂浮点数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double d; scanf("%lf", &d); printf("%f\n%.5f\n%…… 题解列表 2022年06月22日 0 点赞 0 评论 405 浏览 评分:0.0
1067: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { double x,y; scanf("%lf",&x); if…… 题解列表 2022年06月22日 0 点赞 0 评论 328 浏览 评分:0.0
简单输出易懂 精度控制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; int b; float c; double d; scanf("…… 题解列表 2022年06月22日 0 点赞 0 评论 425 浏览 评分:0.0
三个字符串的排序 摘要:解题思路:利用一种类比推理的思想即可解决;注意事项:审题很重要参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string…… 题解列表 2022年06月22日 0 点赞 0 评论 374 浏览 评分:0.0
用string字符串的性质来解决[编程入门]自定义函数之数字分离(C++语言) 摘要:解题思路:把输入看成一个字符串,然后再根据string字符串的性质即可;注意事项:审题很重要;参考代码:#include<bits/stdc++.h>using namespace std;int m…… 题解列表 2022年06月22日 0 点赞 0 评论 442 浏览 评分:9.9
学生成绩,1598 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct Student { char name[100]; char sex[100]; int a…… 题解列表 2022年06月21日 0 点赞 0 评论 421 浏览 评分:0.0
链表合并,1052 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Student{ int num; int score;};struct Node{ …… 题解列表 2022年06月21日 0 点赞 0 评论 497 浏览 评分:0.0