1、实验内容1 def main(): pass if __name__ == '__main__': main() x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = { ...
分类:
其他好文 时间:
2021-04-07 11:09:12
阅读次数:
0
A-AC 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言524288K Special Judge, 64bit IO Format: %lld 题目描述 Crystal's fortune predict system is successfully de ...
分类:
其他好文 时间:
2021-04-07 11:07:42
阅读次数:
0
Matlab之format 设置命令行窗口输出显示格式 【干货】 ①以小数形式显示:format rat ②以分数形式显示:format short ③以紧凑形式显示:format compact ④以松散形式显示:format loose Matlab之format 设置命令行窗口输出显示格式: ...
分类:
其他好文 时间:
2021-04-07 10:34:51
阅读次数:
0
前提 SQL执行计划仍在Shared Pool中 函数体 DBMS_XPLAN.DISPLAY_CURSOR( sql_id IN VARCHAR2 DEFAULT NULL, child_number IN NUMBER DEFAULT NULL, format IN VARCHAR2 DEFAU ...
分类:
数据库 时间:
2021-04-06 14:33:43
阅读次数:
0
x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y2)) ...
分类:
其他好文 时间:
2021-04-05 12:41:04
阅读次数:
0
1. x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y ...
分类:
其他好文 时间:
2021-04-05 12:37:53
阅读次数:
0
task1 x1,y1=1.2,3.57 x2,y2=2.26,8.7 print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2)) print("{:-^40 ...
分类:
其他好文 时间:
2021-04-05 12:32:08
阅读次数:
0
task1 print("hey,u")print("hey","u")x=1y=2z=3print(x,y,z)print("x=%d,y=%d,z=%d"%(x,y,z))print("x={},y={},z={}".format(x,y,z))print(f"x={x},y={y},z={z} ...
分类:
其他好文 时间:
2021-04-05 12:13:30
阅读次数:
0
代码地址: https://gitee.com/Tom-shushu/Algorithm-and-Data-Structure.git 一、ArrayList自定义封装 package com.zhouhong; /** * @ClassName: array * @Description: 二次封 ...
分类:
编程语言 时间:
2021-04-05 11:49:32
阅读次数:
0
1.POI简单介绍 Apache POI 是用Java 编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对 Microsoft Office 格式档案读和写的功能 HSSF 提供读写Microsoft Excel XLS格式档案的功能。 XSSF 提供读写Mi ...
分类:
编程语言 时间:
2021-04-01 13:38:38
阅读次数:
0