Skip to content

Instantly share code, notes, and snippets.

@rkhang7
Created December 6, 2018 16:27
Show Gist options
  • Save rkhang7/db83afc4af90fa1c1dc681d621748d8b to your computer and use it in GitHub Desktop.
Save rkhang7/db83afc4af90fa1c1dc681d621748d8b to your computer and use it in GitHub Desktop.
Sử dụng lại bài 29. Viết chương trình tính tổng các số lẻ của mảng một chiều.
#include <stdio.h>
#include <conio.h>
int main()
{
int n;
printf("Nhap so phan tu cua mang: ");scanf("%d", &n);
int a[n];
for(int i=0;i<n;i++)
{
printf("a[%d]=",i);scanf("%d", &a[i]);
}
int s=0;
for(int i=0;i<n;i++)
if(a[i]%2!=0)
{
s=s+a[i];
}
printf("Tong so le co trong mang la %d", s);
getch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment