Advertisement
HaruKishima

main.cpp

Sep 25th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include "header.h"
  2.  
  3. int main()
  4. {
  5.     int Cao;
  6.     do
  7.     {
  8.         system("cls");
  9.         cout << "Vui long nhap chieu cao tam giac: ";
  10.         cin >> Cao;
  11.         Cao = abs(Cao);
  12.         system("cls");
  13.         runMenuTriangle(Cao);
  14.     } while (true);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement