Skip to content

Instantly share code, notes, and snippets.

@modos
Created November 15, 2020 21:59
Show Gist options
  • Save modos/465aed391f26d01771f320908cf19bb7 to your computer and use it in GitHub Desktop.
Save modos/465aed391f26d01771f320908cf19bb7 to your computer and use it in GitHub Desktop.
عدد چاپ کن
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
string number;
cin >> number;
int i = 0;
for (int i = 0; i < number.size(); i++) {
int x = number[i] - '0';
cout << x << ": ";
for (int j = 0; j < x; j++) {
cout << x;
}
cout << endl;
}
return 0;
}
@dhff007
Copy link

dhff007 commented Dec 7, 2023

۶۳

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment