Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7009 - 2 оронтой тоо |
Өгөгдсөн 2 оронтой тооны цифрүүдийн үржвэрийг ол.
Input
2 оронтой тоо өгөгдөнө.
Output
Нэгж ба аравтын орны цифрүүдийн үржвэр.
Example
Input:
27
Output:
14
Нэмсэн: | Bataa |
Огноо: | 2011-05-10 |
Хугацааны хязгаарлалт: | 0.400s |
Эх кодын хэмжээний хязгаарлалт: | 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
|
||||||||||||||
2019-03-25 03:59:51
#include <iostream> using namespace std; main() { int a,c,d,e; cin>>a; c=a%10; d=a/10; e=c*d; cout<<("%d",e ); } |
||||||||||||||
2019-02-27 06:24:30
sainuuu |
||||||||||||||
2019-02-15 06:51:13
#include<bits/stdc++.h> using namespace std; long long i,k,l,j,n,m,s,a[35][35]; int main(){ cin>>n; a[0][0]=1; for(i=1;i<=30;i++) for(j=1;j<=i;j++) { s=0; for(k=1;k<=9; k++) if (i-k>=0) s+=a[j-1][i-k]; a[j][i]=s; }s=0; for(i=1; i<=n; i++) s+=a[i][n]; cout<<s; } |
||||||||||||||
2019-01-15 03:19:58
#include<bits/stdc++.h> main(){ int a,b,c,s; scanf("%d",&a); b=a/10; c=a%10; s=c*b; printf("%d",s); } |
||||||||||||||
2018-11-24 15:55:59
#include <stdio.h> #include <stdlib.h> #include <math.h> int main() { int a,b,s; scanf("%d%d",&a,&b); s=a*b; printf("%d\n",s); } |
||||||||||||||
2018-03-05 07:05:28
whyy |
||||||||||||||
2018-02-06 09:44:15
#include<stdio.h> main() { int a,b,c,s; scanf("%d",&a); c=a%10; b=a/10; s=c*b; printf("%d\n",s); } |
||||||||||||||
2018-01-30 09:21:20
yj bodhin be |
||||||||||||||
2018-01-16 06:07:09
#include<stdio.h> main(){ int a,b,c; scanf("%d %d",&a,&b); c=a*b; printf("%d",c); } |
||||||||||||||
2017-01-23 06:10:33
harin tiin? |