Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7203 - IOI n удаа |
IOI үгийг өгөгдсөн тоон удаа хэвлэ.
Input
Int төрлийн эерэг бүхэл тоо өгөгдөнө.
Output
Мөр тус бүрт нэг IOI үг бичнэ.
Example
Input:
4
Output:
IOI
IOI
IOI
IOI
Нэмсэн: | Bataa |
Огноо: | 2011-06-12 |
Хугацааны хязгаарлалт: | 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
|
|||||||||||
2024-11-19 11:07:10
#include <stdio.h> int main() { int a,i; scanf("%d",&a); for(i=1;i<=a;i++) { printf("IOI\n"); } return 0; } |
|||||||||||
2024-11-09 16:03:46
You asked me my favorite color, And I paused, Not because I didn't know, But because in that moment, It didn't matter. Whatever you guessed, That's the answer. Because anything you you see in me, Becomes my favorite. |
|||||||||||
2024-10-22 13:22:16
#include <stdio.h> int main() { int a,i; scanf("%d",&a); for(i=1;i<=a;i++) { printf("IOI\n"); } return 0; } pro5 |
|||||||||||
2024-06-20 08:45:56
english or spanish |
|||||||||||
2024-06-11 07:35:44
I want to suicide |
|||||||||||
2024-04-06 06:05:06
#include <iostream> using namespace std; int main(void){ int n; cin>>n; for(int i=0; i<n; i++){ cout<<"IOI"<<"\n"; } } |
|||||||||||
2024-03-25 04:28:48
int n; cin>>n; for(int i=0; i<n; i++){ cout<<"IOI"<<endl; |
|||||||||||
2024-03-15 03:44:19
huulhaa boli Last edit: 2024-03-15 03:45:40 |
|||||||||||
2024-03-09 13:59:29
#include <iostream> using namespace std; int main() { int n; cin>>n; for(int i=0; i<n; i++){ cout<<"IOI"<<endl; } return 0; } huul2 |
|||||||||||
2024-03-07 03:58:14
#include <iostream> #include <sstream> #include <string> #include <cstdlib> #include <cmath> using namespace std; // Headers string toString (double); int toInt (string); double toDouble (string); int main() { int n, i; cin >> n; for (i = 1; i <= n; i++) { cout << "IOI" << endl; } return 0; } // The following implements type conversion functions. string toString (double value) { //int also stringstream temp; temp << value; return temp.str(); } int toInt (string text) { return atoi(text.c_str()); } double toDouble (string text) { return atof(text.c_str()); } |