串行解决方案示例代码: #include <QCoreApplication> #include <QThread> #include <QDebug> #include <QObject> /* sum(n)=> 1 + 2 + 3 + ..... + n sum(1000)= ? [1,1000 ...
分类:
编程语言 时间:
2020-07-26 15:37:15
阅读次数:
61
MPI示例 MPI时间函数测试 #include<stdio.h> #include<mpi.h> #include<stdlib.h> #include<time.h> #include<windows.h> int main(int argc, char** argv) { int err = ...
分类:
其他好文 时间:
2020-07-25 23:39:51
阅读次数:
64
MPI计算$\pi$ 利用公式 \[ \int_0^1 \frac{4}{1+x^2}dx = \pi \] #include<stdio.h> #include<mpi.h> #include<stdlib.h> #include<time.h> int main(int argc, char** ...
分类:
其他好文 时间:
2020-07-25 23:38:51
阅读次数:
124
1、import sys sys.argv[]说白了就是一个从程序外部获取参数的桥梁,这个“外部”很关键。因为我们从外部取得的参数可以是多个,所以获得的是一个列表(list),也就是说sys.argv其实可以看作是一个列表,所以才能用[]提取其中的元素。其第一个元素是程序本身,随后才依次是外部给予的 ...
分类:
编程语言 时间:
2020-07-23 22:27:10
阅读次数:
71
Traceback (most recent call last): File "manage.py", line 22, in <module> execute_from_command_line(sys.argv) File "D:\python_learn\meiduo_project\env ...
分类:
数据库 时间:
2020-07-22 11:10:04
阅读次数:
117
#include "mainwindow.h" #include #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { //连接数据库 QS ...
分类:
数据库 时间:
2020-07-21 09:45:47
阅读次数:
201
题目 题目链接PAT A1027 Colors in Mars (20分) 解题思路 思路01 1 进制转换。十进制转换为十三进制 2 如果转换后是一位前面补充一位0 思路02 根据题目已知,十进制数字最大为168(对应十三进制为CC),可知转换为十三进制后最大为CC,所以转换后一定是两位,x/13 ...
分类:
其他好文 时间:
2020-07-18 22:54:16
阅读次数:
91
1 #命名、变量、代码、函数 2 #this one is like your scripts with argv 3 def print_two(*args): 4 arg1, arg2 = args #将参数解包 5 print(f"arg1: {arg1}, arg2: {arg2}") 6 ...
分类:
编程语言 时间:
2020-07-18 13:33:56
阅读次数:
109
ex15.py 完成ex15.py需要在ex15.py同文件夹目录下面准备一个txt文件(ex15_sample.txt) 执行ex15.py 如: python ex15.py ex15_sample.txt。则可以读取 ex15_sample.txt这个文件的内容 读取文件的基本操作: 打开一个 ...
分类:
编程语言 时间:
2020-07-18 11:22:18
阅读次数:
71
1、 #include<stdio.h>#include<stdlib.h>#include<getch.h> int main(int argc,const char* argv[]){ char map[8][8] = { {0,0,3,3,3,3,0,0}, {0,0,3,5,5,3,0,0} ...
分类:
其他好文 时间:
2020-07-14 00:25:43
阅读次数:
65