程序员的表白-题解(C语言代码) 摘要: #include int main() { int n,i,j; while(scanf("%d",&n)!=EOF)…… 题解列表 2020年05月25日 0 点赞 0 评论 393 浏览 评分:0.0
一个刚刚开始刷题的菜鸟!! 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ int a; while(cin>>a) { for(int i=…… 题解列表 2023年05月20日 0 点赞 0 评论 122 浏览 评分:0.0
1389: 程序员的表白(Java解) 摘要:```java import java.util.*; public class Main { public static void main(String[] args) { …… 题解列表 2023年03月04日 0 点赞 0 评论 181 浏览 评分:0.0
程序员的表白 摘要:解题思路:无注意事项:无参考代码: #include<stdio.h>int main(){ int i,j,a,m; while(scanf("%d",&a)==1) { …… 题解列表 2022年10月03日 0 点赞 0 评论 249 浏览 评分:0.0
1389: 程序员的表白 python 摘要:解题思路:注意python输出会默认换行,需要填入end参数注意事项:换行参考代码:while True: try: a = int(input()) f…… 题解列表 2021年04月20日 0 点赞 0 评论 300 浏览 评分:0.0
程序员的表白 摘要:#程序员的表白c++代码实现 **题目非常俏皮** **......** **原题链接:**[程序员的表白][https://www.dotcpp.com/oj/problem1389.html…… 题解列表 2022年08月28日 0 点赞 0 评论 157 浏览 评分:0.0
程序员的表白 摘要:解题思路:找规律暴力输出即可注意事项:参考代码:#include<stdio.h>int main(){ int n; while(~(scanf("%d",&n))){ for(int i=…… 题解列表 2021年10月15日 0 点赞 0 评论 160 浏览 评分:0.0
程序员的表白(c++)数组做法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int a; char b…… 题解列表 2022年06月03日 0 点赞 0 评论 206 浏览 评分:0.0
1389: 程序员的表白 摘要:C++处理字符串真方便#include <bits/stdc++.h> using namespace std; void print(int &n){ string border …… 题解列表 2022年01月11日 0 点赞 0 评论 210 浏览 评分:0.0