Advertisement
Guest User

Q1

a guest
May 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <dislin>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. int numberOfPoints = 2;
  9. float x[2]= {0,1};
  10. float y[2] = {0,2};
  11. qplot(x,y, numberOfPoints);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement