fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes hẻer
  5.  
  6. int n;
  7. printf("nhap so luong cam bien vao mang:");
  8. scanf("%d ", n);
  9. int a[n];
  10. for(int x=0; x<n; x++){
  11. printf("nhap gia tri %d cua mang la: ",x+1);
  12. scanf("%d", &a[x]);
  13. }
  14. for(int x=0; x<n; x++){
  15. printf("gia tri mang thu %d la: %d ", x+1, a[x]);
  16.  
  17. }
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
nhap so luong cam bien vao mang: