viết chương trình nhập 1dãy số nguyên sau đó in ra màn hình các số lẻ và tính tổng của chúng
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.
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;
}
int main () { int n,i,j; printf("nhap chieu cao tam giac:"); scanf("%d",&n); for(i=1;i<=n;i++) { for(j=1;j<=n-i;j++) printf(" "); for(j=1;j<=2*i-1;j++) printf("*"); printf("\n"); } getch(); }
program tim_uoc;
uses crt;
var i,n:longint;
begin
clrscr;
write('nhap so n:');readln(n);
for i:=1 to n do
if n mod i=0 then write(i);
readln;
end.
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.