document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //segitiga huruf, vyn.
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     int L;
  10.     cout<<"baris :";cin>>L;
  11.     for (int i = 1; i <= L; i++)
  12.     {
  13.         for (int j = L; j > i; j--)
  14.             cout<<" ";
  15.         int j;
  16.         for (j = 1; j<= i; j++)
  17.             {char huruf = (char) j + 64;cout<<huruf;}
  18.         for (int k = j-2; k>=1; k--)
  19.             {char huruf = (char) k + 64;cout<<huruf;}
  20.         cout<<endl;
  21.     }
  22.     system("pause");
  23. }
');