Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7308 - Тонгорогсон тоо |
Өгөгдсөн тооны тонгорогсон тоог ол.
Input
Бүхэл тоо өгөгдөнө.
Output
Тонгорогсон тоо.
Example
Input: 1234 Output: 4321
Нэмсэн: | Bataa |
Огноо: | 2013-01-09 |
Хугацааны хязгаарлалт: | 1s |
Эх кодын хэмжээний хязгаарлалт: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Програмчлалын хэлүүд: | ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE |
hide comments
|
|||||||||
2023-05-09 02:55:23
|
|||||||||
2023-03-15 04:19:08
. |
|||||||||
2023-02-14 06:58:30
. / / c |
|||||||||
2022-12-26 08:41:19
#include<stdio.h> main() { int n,s; scanf("%d",&n); while(n>0){ s=s*10+n%10; n/=10; } printf("%d",s); } //https://www.youtube.com/watch?v=h_D3VFfhvs4 // bas bi chamd hairtai shuu oonh2 |
|||||||||
2022-12-09 08:24:26
https://www.youtube.com/watch?v=-tJYN-eG1zk |
|||||||||
2022-12-09 08:23:47
#include <stdio.h> int main(void) { // your code here int n, tong=0; scanf("%d", &n); while(n>0){ tong = tong * 10 + n % 10; n/=10; } printf("%d",tong); return 0; } https://www.youtube.com/watch?v=-tJYN-eG1zk Last edit: 2022-12-09 08:24:48 |
|||||||||
2022-11-17 06:26:17
#include<bits/stdc++.h> //698069 using namespace std; int main(){ long n,s,a,b; s=0; cin>>n; while (n>0){ a=n%10; s=s*10+a; n=n/10; } cout<<s<<endl; } |
|||||||||
2022-11-15 07:13:25
#include <iostream> #include <math.h> using namespace std; int main() { int a, n, b, c, d, e, i; cin>>a; c=a; n=1; d=0; e=0; i=0; while(c>9) { c=c/10; n=n*10; e=e+1; } while(a>0) { b=a%10; d=b*(n/pow(10,i))+d; i=i+1; a=a/10; } cout<<d; return 0; } ezzzz Erbi |
|||||||||
2022-10-29 07:47:19
RGB7308 - Тонгорогсон тоо |
|||||||||
2022-09-16 03:54:49
package jk; import java.util.Scanner; public class a { public static void main(String[] args) { // TODO Auto-generated method stub int a=0,b=0,c=0,d=0; Scanner scan = new Scanner(System.in); System.out.print("A="); int nu1 = scan.nextInt(); // while(nu1>0) {a=nu1%10; System.out.print(a); nu1=nu1/10; } } } |