Advertisement
RyoMaeda

Lab 15 uwu

Nov 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. // base code file
  2. #include"Ryo.h"
  3. main()
  4. {
  5.   // write code here
  6.  
  7.   drawline(1,0,0,'$');
  8.   drawbox(0,1,2,13,'$');
  9.   drawbox(2,2,1,12,'$');
  10.   drawbox(3,3,1,11,'$');
  11.   drawbox(4,4,1,10,'$');
  12.   drawbox(5,5,1,9,'$');
  13.   drawbox(6,6,1,8,'$');
  14.   drawbox(7,7,1,7,'$');
  15.   drawbox(8,8,1,6,'$');
  16.   drawbox(9,9,1,5,'$');
  17.   drawbox(10,10,1,4,'$');
  18.   drawbox(11,11,1,3,'$');
  19.   drawbox(12,12,1,2,'$');
  20.   drawbox(13,13,1,1,'$');
  21.   // leave the following line in all programs
  22.       getch();
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement