保留两位小数(备忘)(常用) 摘要:##四舍五入到小数点后两位float sum=round(sum*100)/100;    &nbsp…… 文章列表 2023年08月24日 0 点赞 0 评论 60 浏览 评分:9.9
前六章复习赛题目E 摘要:#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;int&nbsp;main(){&am…… 文章列表 2023年09月02日 0 点赞 0 评论 47 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:1、定义结构体,并定义结构体变量2、注意闰年问题:将其定义为if(y%4==0&&y%100!=0||y%400==0)其中y为year的缩写。3、定义一个数组,把12个月的…… 文章列表 2023年09月08日 0 点赞 0 评论 72 浏览 评分:9.9
冒泡排序代码 摘要:#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;typedef&nbsp;long&a…… 文章列表 2023年09月09日 0 点赞 0 评论 63 浏览 评分:9.9
一种利用switch_case特性的巧妙解法 摘要:#一种利用switch_case特性的巧妙解法——减少代码量##原题提供企业发放的奖金根据利润I提成。利润I低于或等于100000元的,奖金可提10%;利润高于100000元,…… 文章列表 2023年09月17日 0 点赞 0 评论 88 浏览 评分:9.9
1093-字符串逆序 摘要:importjava.util.Scanner;publicclassMain{&nbsp;&nbsp;publicstaticvoidmain(String[]args){&…… 文章列表 2023年09月24日 0 点赞 0 评论 58 浏览 评分:9.9
基本数据结构-单链表-默认结构体 摘要:#代码```ctypedefstructLNode{intdata;structLNode*next;}LNode*Linklist;```#个人理解与记忆typedefstruct单链表结构体LNo…… 文章列表 2023年09月28日 0 点赞 0 评论 83 浏览 评分:9.9
基本数据结构-带头结点单链表-删除值为x的节点 摘要:#代码一```cvoiddel_x(LNode*&L,intx){LNode*pre=L,*p=L->next,*q;while(p!=NULL){if(L.data==x){q=p;p…… 文章列表 2023年09月28日 0 点赞 0 评论 71 浏览 评分:9.9
基本数据结构-单链表-A,B递增有序,找出公共元素存放在A中 摘要:#代码```cvoidunion(LNode*&A,LNode*&B){LNode*p=A->next,*q=B->next;LNode*ra=A->next,*u;…… 文章列表 2023年10月04日 0 点赞 0 评论 81 浏览 评分:9.9