Add pause.cpp

This commit is contained in:
2022-04-21 01:51:37 +08:00
parent b589e17486
commit 12c8284767
7 changed files with 70 additions and 1 deletions

10
juan/reader.py Normal file
View File

@@ -0,0 +1,10 @@
import numpy as np
import matplotlib.pyplot as plt
f = open("data.txt", "r")
a = 0
while a == 0:
f.readline
x = np.linspace(10., 100., 50)
y = x**10 + x**5 + x**2 + 100
plt.plot(x, y)
plt.show()