Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
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
|
|||||||||||
2023-11-21 07:28:37
|
|||||||||||
2023-11-21 07:28:26
|
|||||||||||
2023-11-08 15:02:40
#include <iostream> using namespace std; int main(){ int n,i,s; cin>>n; for(i=1;i<=10;i++){ s=n*i; cout<<n<<"*"<<i<<"="<<s<<endl; } return 0; } huul2 |
|||||||||||
2023-10-31 03:32:52
#include <iostream> using namespace std; #define ll long long int main() { int a,b,c,d,e,f,g,h,i,j,n; cin>>a; cout<<"a*1"<<"="<<a*1<<"\n"; cout<<"a*2"<<"="<<a*2<<"\n"; cout<<"a*3"<<"="<<a*3<<"\n"; cout<<"a*4"<<"="<<a*4<<"\n"; cout<<"a*5"<<"="<<a*5<<"\n"; cout<<"a*6"<<"="<<a*6<<"\n"; cout<<"a*7"<<"="<<a*7<<"\n"; cout<<"a*8"<<"="<<a*8<<"\n"; cout<<"a*9"<<"="<<a*9<<"\n"; cout<<"a*10"<<"="<<a*10<<"\n"; } |
|||||||||||
2023-08-21 05:21:39
noob #include <iostream> using namespace std; int main() { int a,b,c,i,d,f=2,n,s=1; cin>>a; for(i=1;i<=10;i++){ cout<<a<<"*"<<i<<"="<<i*a<<endl; } return 0; } |
|||||||||||
2023-07-23 16:34:29
#include<stdio.h> main(){ int a; scanf("%d",&a); for(int d=10,c,b=1; d>=b; b++){ c=b*a; printf("%d*%d=%d\n",a,b,c); }// herwee urjwer gargahiig huswel printf ba haragdah baidal deer n zasaj bichnee } |
|||||||||||
2023-04-13 07:23:19
#include<bits/stdc++.h> using namespace std; int i,b,n; int main(){ cin>>b; for(i=1;i<=10;i++){ n=b*i; cout<<b<<"*"<<i<<"="<<n<<endl; } } |
|||||||||||
2023-03-03 07:57:59
#include<bits/stdc++.h> using namespace std; int main () { int s, i, n; cin >>n; s = 0; for (i = 1; i <= 10; i++){ s = n * i; cout << n << "*" << i << "=" << s <<endl; } } |
|||||||||||
2023-03-01 16:52:11
#include <stdio.h> int main() { int a,i,b,c,d; scanf("%d", &a); for (i=1;i<=10;++i) printf("%d*%d=%d\n", a, i, a*i); return 0; }sj |
|||||||||||
2023-01-07 10:23:08
#include<stdio.h> int main() { int n, i; scanf("%d" ,&n); for(i=1; i<=10; i++) printf("%d*%d=%d\n" ,n ,i ,n*i); return 0; } |