(C)洛谷P4327 [COCI2006-2007#1] Okviri

news/2024/11/2 14:31:36/

代码如下:

#include <stdio.h>
#include <string.h>int main() {char str[16];scanf("%s", str);//第一行printf("..");for (int i = 0; i < strlen(str); i++) {if ((i + 1) % 3) {printf("#");} else {printf("*");}if (i < strlen(str) - 1) {printf("...");}}printf("..\n");//第二行for (int i = 0; i < strlen(str); i++) {if ((i + 1) % 3) {printf(".#.#");} else {printf(".*.*");}}printf(".\n");//第三行for (int i = 0; i < strlen(str); i++) {if (i == 0 || (i + 1) % 3 && (i + 1) % 3 != 1) {printf("#");	//当不为3倍数和3倍数后一位} else {printf("*");}printf(".%c.", str[i]);}if (strlen(str) % 3) {printf("#\n");} else {printf("*\n");}//第四行 与第二行相同for (int i = 0; i < strlen(str); i++) {if ((i + 1) % 3) {printf(".#.#");} else {printf(".*.*");}}printf(".\n");//第五行 与第一行相同printf("..");for (int i = 0; i < strlen(str); i++) {if ((i + 1) % 3) {printf("#");} else {printf("*");}if (i < strlen(str) - 1) {printf("...");}}printf("..\n");return 0;
}

http://www.ppmy.cn/news/919233.html

相关文章

LC325和等于 k 的最长子数组长度(C++)

题目 和等于 k 的最长子数组长度 给定一个数组 nums 和一个目标值 k&#xff0c;找到和等于 k 的最长连续子数组长度。如果不存在任意一个符合要求的子数组&#xff0c;则返回 0。 样例 示例 1: 输入: nums [1,-1,5,-2,3], k 3 输出: 4 解释: 子数组 [1, -1, 5, -2] 和等…

洛谷 - P3372 线段树1

题目描述 如题&#xff0c;已知一个数列&#xff0c;你需要进行下面两种操作&#xff1a; 将某区间每一个数加上 k。求出某区间每一个数的和。 输入格式 第一行包含两个整数 n,m&#xff0c;分别表示该数列数字的个数和操作的总个数。 第二行包含 n 个用空格分隔的整数&am…

洛谷P4327 [COCI2006-2007#1] Okviri

目录 AC code 题目描述 “Peter Pan frames” are a way of decorating text in which every character is framed by a diamond shaped frame, with frames of neigbhouring characters interleaving. A Peter Pan frame for one letter looks like this (X is the letter we…

洛谷P4327

大致思路是&#xff1a;按照5*5的方阵赋值字符&#xff0c;然后保证‘*’不会被覆盖就可以 #include <stdio.h> #include <string.h> char b[7][100]; int main() { char a[20]; scanf("%s", a); //不知道为什么洛谷上不能用gets int i, j, t, k, …

【折半搜索】洛谷P3067:[USACO12OPEN]Balanced Cow Subsets G

先看题&#xff1a; P3067 [USACO12OPEN]Balanced Cow Subsets G - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 说实话&#xff0c;洛谷的题解的确是有点难懂&#xff0c;所以本菜在这里写一个比较易懂的思路和代码&#xff1a; 首先先说用什么算法&#xff0c;这里用的是折…

洛谷[P3374] [P3368]树状数组(线段树解法)

最近学习了线段树&#xff0c;不会树状数组&#xff0c;用线段树舔着脸来做一下 P3374树状数组1https://www.luogu.com.cn/problem/P3374 ac代码 #include<bits/stdc.h> using namespace std; const int N 5e7 10;//N开四倍空间会re&#xff0c;所以开大了点 #defin…

洛谷 P4467 [SCOI2007]k短路

具体题目见洛谷 P4467 方法一&#xff1a;A* 思路&#xff1a;A* 算法目标状态第一次被取出时即为最优解&#xff0c;根据这个特点&#xff0c;我们只需要取出第 k 个目标状态就是答案。 又因为 A* 算法的估值尽量与正确值相似且必须 ≤ ≤ ≤ 正确值的要求。这里使用 SPFA…

再度合作|极智嘉(Geek+) P系列拣选机器人进驻CEVA欧洲物流中心

近日&#xff0c;3PL巨头CEVA Logistics首度在社交媒体展示其与极智嘉(Geek)合作打造的全新欧洲物流中心&#xff0c;并在推文中对极智嘉(Geek)给予了高度赞扬。CEVA表示&#xff0c;极智嘉不仅彻底颠覆了CEVA的工作环境&#xff0c;还充分保障了敬业员工的安全和人体工程学效率…