Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7210 - Тооны хүрд |
Өгөгдсөн тооны хүрдийг дараах хэлбэрээр гарга.
Input
n натурал тоо өгөгдөнө. n<=10.
Output
n тооны хүрд нэг нэг мөрөнд хэвлэ.
Example
Input: 3 Output: 3*1=3
3*2=6
3*3=9
3*4=12
3*5=15
3*6=18
3*7=21
3*8=24
3*9=27
3*10=30
Нэмсэн: | Bataa |
Огноо: | 2011-06-21 |
Хугацааны хязгаарлалт: | 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
|
|||||||||||
2022-11-06 10:00:58
//C language. #include <stdio.h> #include <stdlib.h> int main() { int n, i, sum; scanf("%d", &n); if(n<0 || n>10) { printf("Zuw too oruulna uu!"); exit(0); } for(i=1; i<=10; i++) { sum=n*i; printf("%d*%d=%d\n", n, i, sum); } return 0; } |
|||||||||||
2022-10-26 05:33:45
#include<bits/stdc++.h> using namespace std; int main(){ int a,i,n; cin>>a; n=0; for(i=1;i<=10;i=i+1){ n=a*i; cout<<a<<"*"<<i<<"="<<n<<endl; } } |
|||||||||||
2022-10-13 03:46:01
#include<iostream> using namespace std; int main() { int n,p=1; cin >> n; for(int i = 1; i <= 10; i++) { p = n*i; cout << n << "*" <<i << "="<<p<<endl; } return 0; } |
|||||||||||
2022-10-12 08:25:35
ene deer hisen sda yamr t1 sda ve te mnaihan lalar chin |
|||||||||||
2022-05-27 10:30:17
#include<iostream> using namespace std; int main() { int n,p=1; cin >> n; for(int i = 1; i <= 10; i++) { p = n*i; cout << n << "*" <<i << "="<<p<<endl; } return 0; } |
|||||||||||
2022-05-06 06:47:21
n = int(input()) s = 1 for i in range(1, 10 + 1, 1): s = n * i print(str(n) + "*" + str(i) + "=" + str(s)) sansar suga ald zoriulaw |
|||||||||||
2022-05-06 06:41:17
n = int(input()) s = 1 for i in range(1, 10 + 1, 1): s = n * i print(str(n) + "*" + str(i) + "=" + str(s)) |
|||||||||||
2022-03-30 10:41:13
#include<stdio.h> main() { int b,c; scanf("%d",&b); for(c=1; c<=10; c++) printf("%d*%d=%d\n",b, c, b*c ); } hhahahh EZ ooy |
|||||||||||
2022-03-27 10:56:27
#include<stdio.h> int main() { int a,i=1; scanf("%d",&a); for(i=1;i<=10;i++) { printf("%d*%d=%d\n",a,i,a*i); } } oonh oni-chaan yamaatai gudas<333 |
|||||||||||
2022-03-14 08:42:35
hha |