Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
Console.Write(
"Введите число : "
);
-
int
num=
int
.Parse(Console.ReadLine());
-
int
mun=0;
//число с обратным порядком
-
while
(num>0) {
-
mun=num%10;
-
num/=10;
-
Console.Write(
"{0} "
, mun);
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
Console.Write(
"Введите число : "
);
-
int
num=
int
.Parse(Console.ReadLine());
-
int
mun=0;
//число с обратным порядком
-
while
(num>0) {
-
mun=num%10;
-
num/=10;
-
Console.Write(
"{0} "
, mun);
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
Введите число : 12345
5 4 3 2 1
5 4 3 2 1