Cuối cùng đây là bài làm của em, mò mãi mới biết nhầm % thành $ và i = i + 2 thành i+2
#include <stdio.h>
#include <stdlib.h>
int main()
{
float tiengui = 100 ;
int thoihan = 100;
float nhanduoc = tiengui;
for(int i = 0; i < thoihan; i = i + 2) {
float lai = nhanduoc * 16/100;
nhanduoc += lai;
printf("sau %d nam, so tien nhan duoc la %.0f, lai la %.0f\n", i+2, nhanduoc, lai);
}
printf("Vay sau %d nam, voi lai suat moi %d nam\n", thoihan, 2);
printf("ban se nhan duoc %.0f, gap %.0f lan tien gui ban dau", nhanduoc, (nhanduoc/tiengui));
return 0;
}