ủa cái web này chưa sập hả?
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
program sole;
uses crt;
var a:array[1..100] of integer; i,n,s:integer;
begin
clrscr; s:=0;
write('nhap do dai cua mang');readln(n);
for i:=1 to n do begin writeln('a[',i,']=');readln(a[i]);
if a[i] mod 2 <>0 then begin writeln('cac so le trong day',a[i],' ');
s:= s+ a[i]; end; end;
readln;
end.
Trả lời:
Uses Crt; Var a, b, kq: Real; Pt: Char;
BEGIN
Clrscr;
Write ('a ='); Readln(a);
Write ('b ='); Readln(b);
Write ('Phep tinh can thuc hien la (+ - * /): ');
Readln(Pt);
If Pt = '+’ Then kq := a + b;
If Pt = '-’ Then kq := a - b;
If Pt = '*’ Then kq := a * b;
If Pt = '/’ Then kq := a / b;
Write (a, pt, b, '=', kq);
Readln;
END.
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int a,b,kq=0;
int main()
{
cout<<"nhap a,b"<<endl;
cin>>a>>b;
for (int i=a;i<=b;i++)
{
kq=kq+i;
}
cout<<kq;
return 0;
}