sivan_iut

Untitled

Feb 13th, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3.  
  4. {
  5.  int T;
  6.  scanf("%d",&T);
  7.  int s[100];
  8.  int i;
  9.  int sum=0;
  10.  for(i=0;i<T;i++)
  11.         {
  12.         scanf("%d",&s[i]);
  13.         }
  14.      for(i=0;i<T;i++)
  15. {
  16.     sum=sum+i;
  17. }
  18. printf("%d",sum);
  19.  
  20.     return 0;
  21. }
Add Comment
Please, Sign In to add comment