Задание 6.1
При каком наименьшем целом введенном числе d после выполнения программы будет напечатано число 67?
Паскаль:
1
2
3
4
5
6
7
8
9
10
11
12
| var n,s,d: integer;
begin
readln (d);
n:=2;
s:=0;
while s <= 365 do
begin
s:= s + d;
n:= n + 5;
end;
write(n);
end. |
var n,s,d: integer;
begin
readln (d);
n:=2;
s:=0;
while s <= 365 do
begin
s:= s + d;
n:= n + 5;
end;
write(n);
end.
Бейсик:
DIM S, N, D AS INTEGER
INPUT D
N = 2
S = 0
WHILE S <= 365
S = S + D
N = N + 5
WEND
PRINT N |
DIM S, N, D AS INTEGER
INPUT D
N = 2
S = 0
WHILE S <= 365
S = S + D
N = N + 5
WEND
PRINT N
|
Python:
d = int (input ())
s = 0
n = 2
while s <= 365:
s = s + d
n = n + 5
print(n) |
d = int (input ())
s = 0
n = 2
while s <= 365:
s = s + d
n = n + 5
print(n)
|
С++:
#include <iostream>
using namespace std;
int main() {
int s = 0, n = 2;
int d;
cin >> d;
while (s <= 365) {
s = s + d;
n = n + 5;
}
cout << n << endl;
return 0;
} |
#include <iostream>
using namespace std;
int main() {
int s = 0, n = 2;
int d;
cin >> d;
while (s <= 365) {
s = s + d;
n = n + 5;
}
cout << n << endl;
return 0;
}
|
✍ Решение:
Ответ: 29