import java.awt.Color;
import java.awt.Container;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Insets;
import javax.swing.*;
import javax.swing.border.LineBorder;
public class MyCaculate extend...
import java.awt.BorderLayout;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import ...
import java.awt.Color;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionAdapter;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import...
import math
import os
import tempfile
import time
from functoole import reduce
from PIL import Image
BACKGROUND_POS = {40,500}
DISTANCE_TO_TIME_RATIO =1.35
SCREENSHOT_PATH = tempfile.gettempdir()+"/screenshot.png"
def calculate_jump_distance():
im =Image.open(S...
import java.awt.Button;
import java.awt.Color;
import java.awt.Frame;
import java.awt.GridLayout;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Scanner;
impo...
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax...
爬内涵段子
猜数字游戏
爬武侠小说
下载一页知乎粉丝列表
#define _WINSOCK_DEPRECATED_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#include <winsock2.h>
#pragma comment(lib,"ws2_32")
#include <Winsock2.h>
#include <stdio.h>
int main()
{
//加载套接字
WORD wVersionRequested;//WinSock库的版本号
WSADATA wsaData;
int err;
wVersionRequested = MAKEWO...
#include <stdio.h>
int main()
{//1.打开文件和关闭文件
int i,j,k;//i表示行数,j表示空格,k表示*号
char str[512],ch;
FILE* fp1;
FILE* fp=fopen("3_4.txt","w+");
for(i=0;i<5;i++)//5行
{
for(j=0;j<6-i;j++)
fwrite(" ",1,1,fp);
for(k=1;k<=2*i+1;k++)
fwrite("*",1,1,fp);
fwrite("\n",1,1,fp);
}
fc...
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int arr[10][10]={0};//扫雷游戏中的100个格子
int row,col;//循环变量
int row1,col1;//九宫格的循环变量
int count =0;//累计产生地雷的数量
srand(time(0));//每次执行产生的结束都不一样 随机种子
do
{
row=rand()%10;//从0-9 随机函数
col=rand()%10;
if(arr[row][c...
#include <stdio.h>
#include <windows.h>
int main()//函数的入口,而且只能有一个,也不能多不能少。
{
int i=0,j=0,k=0;//i是表示小时,j是表示分钟,k是表示秒
for(;;)//循环的固定格式
{
printf("\r%2d:%02d:%02d",i,j,k++);//k++ 是自加1 20:16
//\r是移动到行首的意思,
//%02d是向右对齐,当不足两位整数时用0我代替
Sleep(1000);//睡觉1秒钟 1000是毫秒,1000毫秒...
#include <stdio.h>
//模拟系统删除文件==在一堆字符串里面删除某个字符
void func(char s[],int c)//函数的实现
{
char *q=s;
for(;*q!='\0';q++)
if(*q!=c)
*(s++)=*q;
*s=0;
}
int main()
{
char str[]="aabbaabbball";//相当于8.字符串这个文件夹
char ch;
printf("原文件夹里面:%s\n",str);
printf("请输入你要删除的文件:\n");
scanf("%c",&...
#include <stdio.h>
//游戏、不想被其他人修改自己写的代码,要用const
int main()
{
const int a=1000;
//a=200;//a属于常量,不能修改
int b=10000,c=20;
const int* p=&b;//常量指针
//*p=1;//不能通过其目标去修改
p=&c;
printf("%d\n",*p);
int* const p1=&b;//指针常量
//p1=&c;//不能通过其地址去修改
*p1=1000000;
printf("%d\...
#include <stdio.h>
int main()
{
char st[20];//相当于新建一个文件夹
char* ps;
int i,j=0;//i用来循环遍历我们的文件夹,j用来统计文件出现了多少次
printf("请输入一个字符串:\n");
ps=st;//指向数组的首地址
scanf("%s",ps);
for(i=0;ps[i]!='\0';i++)//文件夹的遍历
if(ps[i]=='7')
printf("文件夹中出现‘7’字符%d次\n",++j);
if(j==0)
printf("文件夹中没有‘7’字符\n");
pr...
#include <stdio.h>
typedef struct Date
{
int year;//年
int month;//月
int day;//日
}DATE;//定义struct Date类型,及其别名为DATE,三个int成员
struct Student//st->birthday.year
{
char m_name[128];//姓名
int n_age;//年龄
DATE birthday;//出生时间
}sa={"习惯了",21,{1996,9,21}};//sa是结构体Student的变量。
typedef struct Stu...
#include <stdio.h>
#include <string.h>
//1.求取字符串长度==机试题(请写出计算字符串长度的原型代码)
int Strlen(char *pstr)
{
int len = 0;//接收字符串长度的变量 123456
while(*pstr)//字符串是以\0为结尾的*pstr == *pstr!='\0'
{
++pstr;
++len;
}
return len;
}
//2.字符串连接==机试题(请写出计算字符串连接的原型代码)
char* Strcat(char* str1,char* s...
#include <stdio.h> //C标准输入输出头文件
#include <stdlib.h> //通用工具头文件
#include <time.h> //时间函数头文件
//获取用户输入的密码
void InputPassword(char pw[])//char *pw
{
char ch; //用户输入的密码字符
const char * pold = pw; //保存密码数组的首地址,用于循环内的比较
while((ch = getch()) != '\r')//ASCII码值为13(‘\r’)
{
if(ch == '\b' &a...