program help;
var a,i,s:integer;
begin
writeln('введите значение а');
readln(a);
while a<=500 do
for i:=a to 500 do
s:=s+i;
writeln('сумма чисел ',s);
end.
using System;
namespace для_знаний_ком
{
class Program
static void Main(string[] args)
Console.WriteLine("Задайте значение переменной 'a' с клавиатуры "); string a = Console.ReadLine(); int x = Convert.ToInt32(a);
int s = 0;
do
s += x;
x++;
}
while (x < 500);
Console.WriteLine($"Сумма всех чисел от {a} до 500 = {s}");
Табуляции на скриншоте ↓
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
program help;
var a,i,s:integer;
begin
writeln('введите значение а');
readln(a);
while a<=500 do
for i:=a to 500 do
s:=s+i;
writeln('сумма чисел ',s);
end.
Ответ:
using System;
namespace для_знаний_ком
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Задайте значение переменной 'a' с клавиатуры "); string a = Console.ReadLine(); int x = Convert.ToInt32(a);
int s = 0;
do
{
s += x;
x++;
}
while (x < 500);
Console.WriteLine($"Сумма всех чисел от {a} до 500 = {s}");
}
}
}
Примечание:
Табуляции на скриншоте ↓