c++
边界发动小Devil
new Here Always
展开
-
标识符的判断C++
#include <iostream> #include <string> using namespace std; //标识符只能由字母、数字和下划线三种字符组成,且第一个字符必须是字母或下划线。 //标识符是用户编程时使用的名字,比如指定某个东西、人,都要用到它,他或她的名字。 //在电脑语言中,对于变量,常量,函数,语句块也有名字,统统称之为标识符。 //标识符必须以字母a~z、 A~Z或下划线开头,后面可跟任意个(可为0)字符,这些字符可以是字母、 //下划线和数字,其他.原创 2021-09-12 20:49:50 · 1028 阅读 · 0 评论 -
一元三次方程的解-牛莱公式
C++代码: ```cpp #include<stdio.h> #include <iomanip> #include<iostream> #include<math.h> using namespace std; double a, b, c, d; double fun(double x) { double res = x*(x * (a * x + b) + c) + d; return res; } double daofun(d原创 2021-09-10 14:48:37 · 287 阅读 · 0 评论