Cho tệp tin songuyen.TXT lưu trữ các số tự nhiên 12 13 15 18 19 5 33 15 17 19 22 7 35 2 25 92. Hãy viết chương trình in ra các số lẻ chia hết cho 5
2 câu trả lời
mình làm mảng được không bạn :(
#include <bits/stdc++.h>
using namespace std;
int main(){
int arr[] = {12,13,15,18,19,5,33,15,17,19,22,7,35,2,25,92};
int length = sizeof(arr)/sizeof(arr[0]);
for(int i=0;i<length;i++){
if(arr[i]%5==0){
cout<<arr[i]<<" ";
}
}
//samon247
return 0;
}
program h247;
var f: text;
i: byte;
begin
assign(f, 'songuyen.txt');
reset(f);
i:=0;
while not eof (f) do
begin
read(f, i);
if (i mod 2 <> 0) and (i mod 5 = 0) then Writeln('So le chia het cho 5 la ', i);
end;
close(f);
readln;
end.
Câu hỏi trong lớp
Xem thêm