#include <stdio.h>
#include <iostream>
#include <math.h>
float f(float x, float y, float z) {
float a = x * x + 9.0f / 4.0f * y * y + z * z - 1;
return a * a * a - x * x * z * z * z - 9.0f / 80.0f * y * y * z * z * z;
}
float h(float x, float z) {
for (float y = 1.0f; y >= 0.0f; y -= 0.001f)
if (f(x, y, z) <= 0.0f) {
......................
阅读全部
|
ksz
贴于 2022年12月12日 09:45
hide
bbsi
//esdwd
#include <iostream>
#include <stdio.h>
using namespace std;
////////////////////
int subtrs(int a,int b){
return a-b;
}
class volume{
public:
double width;
......................
阅读全部
|
ksz
贴于 2022年12月11日 21:50
hide
bbsi
#include <stdio.h>
#include <algorithm>
// #include <vector>c
#include <iostream>
using namespace std;
typedef struct student{
char name[20];
int math;
int english;
} Student;
boo cmp(Student a, Student b);
......................
阅读全部
|
sundongnuan
贴于 2022年12月11日 17:15
hide
bbsi
#include <stdio.h>
// #include <algorithm>
// #include <vector>c
// #include <iostream>
// using namespace std;
int main() {
int a[] = {45, 12, 34, 77, 90};
sort(a, a+4, cmp);
for (int i = 0; i < 5; i++) {
cout << a[i] << " ";
......................
阅读全部
|
sundongnuan
贴于 2022年12月11日 16:44
hide
bbsi
#include <stdio.h>
#include <iostream>
#include <math.h>
#include <cmath>
#include <algorithm>
#include <deque>
using namespace std;
class Solution {
public:
int resourceDispatch(const vector<int> &resources, const vector<int> &requests)
{
......................
阅读全部
|
sundongnuan
贴于 2022年12月11日 15:22
hide
bbsi
#include <stdio.h>
#include <iostream>
#include <math.h>
float f(float x, float y, float z) {
float a = x * x + 9.0f / 4.0f * y * y + z * z - 1;
return a * a * a - x * x * z * z * z - 9.0f / 80.0f * y * y * z * z * z;
}
float h(float x, float z) {
for (float y = 1.0f; y >= 0.0f; y -= 0.001f)
if (f(x, y, z) <= 0.0f) {
......................
阅读全部
|
sundongnuan
贴于 2022年12月10日 20:47
hide
bbsi
#include <stdio.h>
#define A 60//树顶,以树顶为标杆
#define B 5//等差数列
void tree(int layer,int line)
{
char a = ' ',c = '*';
int x,y,z,l,d;
d=B;//等差
l=0;//用来确定打印范围
//1.画树身
for(x=0;x<layer;x++)//确定有几层
{
......................
阅读全部
|
坠空
贴于 2022年12月10日 08:05
hide
bbsi
#include <stdio.h>
int main() {
printf("我在编程中国学C语言\n\n");
// 练习一下循环的使用
int i;
for (i=1; i<=20; i++) {
printf("我爱编程中国 %d 次\n", i);
}
printf("\n\n绘制一个心形图案:");
......................
阅读全部
|
s2362938759
贴于 2022年12月5日 23:24
hide
bbsi