<script>
var chars=[];
for (var r=48;r<=57;r++)
{
chars.push(String.fromCharCode(r));
}
for (var min=97;min<=122;min++)
{
chars.push(String.fromCharCode(min));
}
for (var max=65;max<=90;max++)
{
......................
阅读全部
|
JS小渣渣
贴于 2020年4月6日 11:48
hide
bbsi
language = "Python"
print(language+" is my favorite my language")
阅读全部
|
Divine
贴于 2020年4月5日 13:13
hide
bbsi
#include<bits/stdc++.h>
#include <unistd.h>
#include<windows.h>//Sleep函数
using namespace std;
void print(char *p)
{
while(1)
{
if(*p!=0)
printf("%c",*p++);
else
break;
......................
阅读全部
|
Lceo
贴于 2020年3月31日 09:11
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) {
......................
阅读全部
|
影流之主
贴于 2020年3月28日 22:02
hide
bbsi
#include<iostream>
#include<iomanip>
using namespace std;
void yiwei()
{
int chengshu, beichengshu;
cout << "一位乘法(请从大到小输入)" << endl;
cin >> chengshu >> beichengshu;
system("cls");
cout << setw(7) << chengshu << endl;
cout << setw(1) << "×" << setw(5) << beichengshu << endl;
cout << setw(7) << "-------";
......................
阅读全部
|
万致远醉帥
贴于 2020年3月28日 13:16
hide
bbsi
#include<iostream>
using namespace std;
const int jj = 6;
int main()
{
int i = 1;
int main[jj],*p[jj];
cout << "记录表";
for (size_t i = 0; i < jj; i++)
{
cin >> main[i];
......................
阅读全部
|
万致远醉帥
贴于 2020年3月27日 17:54
hide
bbsi
#include<stdio.h>
struct date{
int day;
int month;
int year;
};
struct date get(void);
int main(){
struct date today={0,0,0};
today=get();
printf("%d-%d-%d",today.year,today.month,today.day);
return 0;
......................
阅读全部
|
LGD335060087
贴于 2020年3月26日 12:04
hide
bbsi