Advertisement
tei123

Untitled

Dec 7th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.86 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <time.h>
  4.  
  5. using namespace std;
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.     /*
  10.    
  11.    int a[7][7],i,l,sprz=0,sb1=0;
  12.    for (i=0;i<7;i++)
  13.    {
  14.        for (l=0;l<7;l++)
  15.            {
  16.                 a[i][l]=rand()%9+1;
  17.                 cout<<a[i][l] <<" ";
  18.                 }
  19.                 cout<<endl;
  20.            };
  21.    for (i=0;i<7;i++)
  22.        {
  23.         for (l=0;l<7;l++)
  24.             {
  25.              if (i==l)
  26.              {
  27.                       sprz+=a[i][l];
  28.                       };
  29.              if (i+l==6)
  30.              {
  31.                         sprz+=a[i][l];
  32. }
  33.  if((i==0)||(i==7-1)||(l==0)||(l==7-1))sb1=sb1+a[i][l];
  34. }
  35. }
  36.  cout<<"suma na brzegach: "<<sb1<<"."<<endl;
  37. cout<<"suma przekatnych: "<<sprz<<endl;
  38.    for (i=0;i<7;i++)
  39.        {
  40.         for (l=0;l<7;l++)
  41.             {
  42.             if((i!=0)&&(i!=6)&&(l!=0)&&(i!=l)&&(i!=6-l)&&(l!=6))
  43.             a[i][l]=0;
  44.             };
  45.             };
  46.            
  47.            
  48.    for (i=0;i<7;i++)
  49.    {
  50.        for (l=0;l<7;l++)
  51.            {
  52.                
  53.                 cout<<a[i][l] <<" ";
  54.                 }
  55.                 cout<<endl;
  56.                 }
  57.                 */
  58. int a[5][5],i,l,lia=0,lis=0;
  59. srand(time(NULL));
  60.  for (i=0;i<5;i++)
  61.    {
  62.        for (l=0;l<7;l++)
  63.            {
  64.                 a[i][l]=rand()%25+65;
  65.                 cout<<char(a[i][l]) <<" ";
  66.                 if (a[i][l]==65)
  67.                    {
  68.                      lia++;}
  69.                      if((a[i][l]=='A')||(a[i][l]=='E')||(a[i][l]=='I')||(a[i][l]=='O')||(a[i][l]=='U')||(a[i][l]=='Y'))
  70.                      lis++;
  71.              
  72.            }
  73.            
  74.            
  75.                 cout<<endl;  
  76.            };
  77.            cout<<"ile samoglosek: "<<lis<<endl;
  78.             cout<<"ile a: "<<lia<<endl;
  79.     system("PAUSE");
  80.     return EXIT_SUCCESS;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement