Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
C++。 基本
(C++) 带条件的循环语句 - while
Module:
(C++) 带条件的循环语句 - while
Problem
8
/21
数字位数 - 3 - 修复程序
Problem
让我们尝试修复之前的任务。
为此,您需要将原始数字保存在其他变量中,例如
n1
。
在这种情况下,原始值不会丢失,我们将能够在输出中显示保存的值。
为此,请执行以下操作:
1.在第4行声明一个变量
n1
;
2. 在第7行,将变量
n
的值存入变量
n1
;
3. 在第12行的输出语句中,将变量
n
的值的输出替换为变量
n1
的值的输出;
4.运行程序,查看其工作结果。
1000
ms
32 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary