- 博客(8)
- 收藏
- 关注
原创 心*
#include <iostream>#include <cmath>using namespace std;int main() { for( float y = 1.3 ; y >= -1.1 ; y -= 0.06 ){ for( float x = -1.2 ; x <= 1.2 ; x += 0.03) ...
2019-10-06 15:04:25 173
原创 在IDEA上配置SonarLint以及代码质量分析报告模板
在线安装SonarLint插件File->Settings…进入设置界面点击左侧Plugins,然后在搜索框输入SonarLint,点击安装,之后重启IDEA离线安装SonarLint插件在如下链接下载对应最新版本sonarlinthttps://plugins.jetbrains.com/plugin/7973-sonarlint/versionsFile->Settings…->Plugins->点击设置按钮->在下拉框中点击Install
2021-12-03 16:26:33 7955
原创 解二(三)元一次方程
我想学习更多的线性代数知识,写出更简洁,更实用的程序!!!反正我喜欢编程,也许大佬会觉得我写的很幼稚,粗糙(没错,就是幼稚,毕竟我还是萌新),也许外行人会觉得我写的太low,没有好看的界面(没办法,我不会),但是,这只是开始,当我获得更高深的知识的时候,我一定会做的比现在好。奈何知识水平有限,眼界有限,目前的我,只做到这里。敬请批评指正,非诚勿扰。#include<iostream...
2019-10-09 17:01:41 361
原创 字符串处理函数(aoke学习笔记)
★C++标准库提供了兼容C语言的字符串处理函数#include <string.h>字符串复制函数 (string copy)△strcpystrcpy(str1,str2); //复制str2到str1△strncpystrncpy(str1,str2,n); //复制str2中不超过n个字符的字符串复制到str1字符串连接函数 (string catena...
2019-10-08 19:33:54 498
原创 找零(用最少张数的人民币)
设人民币的面额有(以元为单位)1分、2分、5分、1角、2角、5角、1元、2元、5元、10元、20元、50元。编写函数void change(double m,double c);其中m为商品的价格,c为顾客付款,函数能输出应给顾客找零金额的面额的人民币张数,且张数之和为最小。要求在主函数中输入商品价格和顾客付款,调用函数得到结果。#include <iostream>using n...
2019-10-06 19:58:12 2549
原创 三叶玫瑰线*(水平)
#include <iostream>#include <cmath>using namespace std;int main() { for( float y = 1.0 ; y >= -1.0; y -= 0.04){ for( float x = -1.0; x <= 1.0 ; x += 0.02) ...
2019-10-06 15:31:58 1045
原创 课后题(正弦曲线竖直版*)
#include <iostream>#include <cmath>#include <iomanip>using namespace std;int main(){ int n; double pi=3.1415926535; cout<<setiosflags(ios::fixed)<<setpre...
2019-10-06 15:09:49 181
原创 伯努利双纽线*(水平)
#include <iostream>#include <cmath>using namespace std;int main() { for( float y = 1.0 ; y >= -1.0; y -= 0.04){ for( float x = -1.0; x <= 1.0 ; x += 0.02) ...
2019-10-06 14:56:24 2995
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人