Guest User

Untitled

a guest
Oct 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. foreach (object x in obj_array) {
  2.     for(double i = 0; i < x.end();) {
  3.         foreach (object y in obj_array) {
  4.             while (x != y) {
  5.                 for (double k = 0; k < y.end();) {
  6.                     \\ call function to do work on x and y
  7.                     print x;
  8.                     print y;
  9.                     k = k + y.step();
  10.                 }
  11.             }
  12.         }
  13.     i = i + x.step();
  14.     }
  15. }
Add Comment
Please, Sign In to add comment