题解 1389: 程序员的表白

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

此解可AC (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, i, j, k; while (scanf("%d", &a) != EOF) { for (j……

程序员的表白

摘要:解题思路:找规律暴力输出即可注意事项:参考代码:#include<stdio.h>int main(){ int n; while(~(scanf("%d",&n))){     for(int i=……

程序员的表白 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int fun(int n){     int d=n;     while(d)     ……

1389: 程序员的表白

摘要:C++处理字符串真方便#include <bits/stdc++.h> using namespace std; void print(int &n){     string border ……