Advertisement
skb50bd

Repeated Number w/o Array/Loop

Mar 20th, 2015
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.83 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z;
  5.     a=b=c=d=e=f=g=h=i=j=k=l=m=n=o=p=q=r=s=t=u=v=w=x=y=z=0;
  6.     char ch = '1';
  7.     while(ch!='\n') //This Will Count The Number of Letters Individually
  8.     {
  9.         ch = getchar();
  10.         if(ch=='a' || ch=='A')
  11.             a++;
  12.         else if(ch=='b' || ch=='B')
  13.             b++;
  14.         else if(ch=='c' || ch=='C')
  15.             c++;
  16.         else if(ch=='d' || ch=='D')
  17.             d++;
  18.         else if(ch=='e' || ch=='E')
  19.             e++;
  20.         else if(ch=='f' || ch=='F')
  21.             f++;
  22.         else if(ch=='g' || ch=='G')
  23.             g++;
  24.         else if(ch=='h' || ch=='H')
  25.             h++;
  26.         else if(ch=='i' || ch=='I')
  27.             i++;
  28.         else if(ch=='j' || ch=='J')
  29.             j++;
  30.         else if(ch=='k' || ch=='K')
  31.             k++;
  32.         else if(ch=='l' || ch=='L')
  33.             l++;
  34.         else if(ch=='m' || ch=='M')
  35.             m++;
  36.         else if(ch=='n' || ch=='N')
  37.             n++;
  38.         else if(ch=='o' || ch=='O')
  39.             o++;
  40.         else if(ch=='p' || ch=='P')
  41.             p++;
  42.         else if(ch=='q' || ch=='Q')
  43.             q++;
  44.         else if(ch=='r' || ch=='R')
  45.             r++;
  46.         else if(ch=='s' || ch=='S')
  47.             s++;
  48.         else if(ch=='t' || ch=='T')
  49.             t++;
  50.         else if(ch=='u' || ch=='U')
  51.             u++;
  52.         else if(ch=='v' || ch=='V')
  53.             v++;
  54.         else if(ch=='w' || ch=='W')
  55.             w++;
  56.         else if(ch=='x' || ch=='X')
  57.             x++;
  58.         else if(ch=='y' || ch=='Y')
  59.             y++;
  60.         else if(ch=='z' || ch=='Z')
  61.             z++;
  62.     }
  63.     if(a>1)
  64.         printf("%d A(s)\n",a);
  65.     if(b>1)
  66.         printf("%d B(s)\n",b);
  67.     if(c>1)
  68.         printf("%d C(s)\n",c);
  69.     if(d>1)
  70.         printf("%d D(s)\n",d);
  71.     if(e>1)
  72.         printf("%d E(s)\n",e);
  73.     if(f>1)
  74.         printf("%d F(s)\n",f);
  75.     if(g>1)
  76.         printf("%d G(s)\n",g);
  77.     if(h>1)
  78.         printf("%d H(s)\n",h);
  79.     if(i>1)
  80.         printf("%d I(s)\n",i);
  81.     if(j>1)
  82.         printf("%d J(s)\n",j);
  83.     if(k>1)
  84.         printf("%d K(s)\n",k);
  85.     if(l>1)
  86.         printf("%d L(s)\n",l);
  87.     if(m>1)
  88.         printf("%d M(s)\n",m);
  89.     if(n>1)
  90.         printf("%d N(s)\n",n);
  91.     if(o>1)
  92.         printf("%d O(s)\n",o);
  93.     if(p>1)
  94.         printf("%d P(s)\n",p);
  95.     if(q>1)
  96.         printf("%d Q(s)\n",q);
  97.     if(r>1)
  98.         printf("%d R(s)\n",r);
  99.     if(s>1)
  100.         printf("%d S(s)\n",s);
  101.     if(t>1)
  102.         printf("%d T(s)\n",t);
  103.     if(u>1)
  104.         printf("%d U(s)\n",u);
  105.     if(v>1)
  106.         printf("%d V(s)\n",v);
  107.     if(w>1)
  108.         printf("%d W(s)\n",w);
  109.     if(x>1)
  110.         printf("%d X(s)\n",x);
  111.     if(y>1)
  112.         printf("%d Y(s)\n",y);
  113.     if(z>1)
  114.         printf("%d Z(s)\n",z);
  115.     return 0;
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement