Viết chương trình nhập 2 số nguyên a và b.Tính và in ra mản hình số lượng các số chia hết cho 3 trong phạm vi từ a đến b. (python)
2 câu trả lời
Program baitap;
Uses crt;
Var a,b,i,dem:integer;
Begin
Clrscr;
Write('a='); Readln(a);
Write('b='); Readln(b);
dem:=0;
If a<b then
Begin
For i:=a to b do If (i mod 3=0) then dem:=dem+1;
Writeln('So luong cac so chia het cho 3:',dem);
End
Else Writeln('Hay nhap a<b');
Readln
End.
#include<iostream>
using namespace std;
int main(){
int a,b,tong=0;
cin>>a>>b;
for(int i = a; i<=b;i++){
if(i%3==0){
tong = tong + i;
}
}
cout<<tong;
}