3168 - 一行五星
一行打印5个星号。
Input
Output
Examples
Input
no input needed
Output
*****
Solution C
#include<stdio.h> int main() { printf("*****"); return 0; }
Solution C++
#include<bits/stdc++.h> using namespace std; string n; int main() { //freopen(".in","r",stdin); //freopen(".out","w",stdout); cout<<"*****"; return 0; }