Advertisement
tei123

qwe

Nov 16th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.79 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.  
  9.     int a;
  10.     for (a=65;a<=90;a++)
  11.     {
  12.     cout<<a<<" "<<char(a)<<endl;
  13.     };
  14.   /*
  15.    
  16.     int a,n,k;
  17.     k = 1;
  18.     a = 1;
  19.     cin>>n;
  20.     for (k=1; k<=n; k++)
  21. {
  22.       for (a=1;a<=k;a++)
  23.  
  24.             cout<<"*";
  25.             cout<<endl;
  26.  
  27. }
  28.  
  29.        
  30. int a,n,k,m;
  31.     cin>>n;
  32.     cin>>m;
  33.     for (a=1;a<=m;a++)
  34.     {
  35.         for (k=1;k<=n;k++)
  36.             cout<<"*";
  37.             cout<<endl;
  38.                
  39.                    
  40.     int i,n,j;
  41.     cin>>n;
  42.     for (i=n; i>=1; i--)
  43. {
  44.       for (j=i;j>=1;j--)
  45.  
  46.             cout<<"*";
  47.             cout<<endl;
  48.  
  49. }
  50.           */              
  51.                    
  52.     system("PAUSE");
  53.     return EXIT_SUCCESS;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement