#include<bits/stdc++.h>
#define N 1000
using namespace std;
int main(){
string sa,sb;
int la,lb,i;
int a[N]={0},b[N]={0},c[N]={0};
int lc=0,x=0;
cout<<"----------------------------------------------"<<endl;
cout<<"欢迎来到加法计算器,可执行1000位的整数数字相加"<<endl;
cout<<"----------------------------------------------"<<endl;
while(1){
......................
阅读全部
|
一瓶浓墨
贴于 2022年9月12日 11:01
hide
bbsi
#include<iostream>
using namespace std;
// 直接插入排序
void sort(int *p , int size){
for(int i = 1; i < size ; i++){
int temp = p[i];
int j = i;
while(p[j - 1] > temp && j > 0){
p[j] = p [j-1];
j--;
}
p[j] = temp;
......................
阅读全部
|
weinaike
贴于 2022年9月1日 21:31
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) {
return y;
......................
阅读全部
|
ゐ丶僷ヂ諾
贴于 2022年8月7日 11:21
hide
bbsi
#include<iostream>
#include<ctime>
#include<stdlib.h>
using namespace std;
int main()
{
srand(time(0));
cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
return 0;
......................
阅读全部
|
wl0421
贴于 2022年7月31日 19:23
hide
bbsi
#include <iostream>
using namespace std;
int main()
{
return 0;
}
阅读全部
|
YH_21_LIU
贴于 2022年4月26日 18:14
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) {
......................
阅读全部
|
YH_21_LIU
贴于 2022年4月26日 18:02
hide
bbsi
/*
2022年4月15日16点55分
题目:求1+2!+3!+...+20!的和。
*/
#include <iostream>
using namespace std;
long long f(int n)
{
long long a = 1;
for (int i = 1; i <= n; i++)
......................
阅读全部
|
StarLiver
贴于 2022年4月15日 16:55
hide
bbsi
/*
2022年4月15日16点51分
题目:有一分数序列:2/1、3/2、5/3、8/5、13/8、21/13、...求出这个数列的前20项之和。
*/
#include <iostream>
using namespace std;
float f(int n)
{
int a1 = 1, a2 = 1;
for (int i = 3; i <= n; i++)
......................
阅读全部
|
StarLiver
贴于 2022年4月15日 16:51
hide
bbsi