当前位置:网站首页>Finishing (III) - Exercise 2
Finishing (III) - Exercise 2
2022-07-04 06:55:00 【Dan·】
1、 Enter some positive integers (≤26), Program to output the letter triangle attached to the wall with these positive integers as the side length .
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int n,i,j;
while(cin>>n)
{
char a;
for(i=1;i<=n;i++)
{
cout<<"a";
for(j=1;j<=n-i;j++)
{cout<<" ";}
char a=97;
for(j=1;j<=i;j++)
{cout<<char(a+j-1);}
cout<<endl;
}
cout<<endl;
}
return 0;
}Input :
3
7
Output :
a a
a ab
aabca a
a ab
a abc
a abcd
a abcde
a abcdef
aabcdefg
2、 Xiao Jin plays cards , When the number of cards in the other party's hand is greater than or equal to 10 Zhang Shi , He will observe each other's expression , If the other party looks nervous , He's out “ Fried ”, If the other party is laughing , He doesn't play any cards .
character 'J' Express that the other party is nervous about applying ,'H' Express that the other party is laughing . Xiao Jinchu “ Fried ”, The output “Z”, If you don't play any cards , The output “pass”.
When the number of cards in the other hand is less than 10 Zhang's time , He will “ Pick up ” The other side's card , That is, the other party goes out “ single ”, He also came out “ single ”, The other party “ double ”, He also made a double .
character 'D’ On behalf of the other party “ single ”,'S' On behalf of the other party “ double ”. Xiao Jinchu “ single ”, The output “D”, If it comes out “ double ”, The output “S”.
#include<iostream>
using namespace std;
int main()
{
int n;char b,c;
cin>>n>>b>>c;
if(n>=10)
{
if(b=='J') cout<<"Z";
if(b=='H') cout<<"pass";
}
if(n<10)
{
if(c=='D') cout<<"D";
if(c=='S') cout<<"S";
}
}Input 1:
15 H D
Input 2:
9 J S
Output 1:
pass
Output 2:
S
3、 A hundred dollars for a hundred chickens : A chicken is worth five , A hen is worth three , A chicken is worth three , A hundred dollars for a hundred chickens , Ask jiweng 、 mother 、 How much is it ?
#include<iostream>
using namespace std;
int main()
{
for (int a = 0; a <= 20; a++)
for (int b = 0; b <= 33; b++)
for (int c = 0; c <= 100 - a - b; c = c + 3)
if ((a + b + c == 100) and (5 * a + 3 * b + c / 3 == 100))
cout << a << " "<<b<<" " << c;
}
边栏推荐
- Another company raised the price of SAIC Roewe new energy products from March 1
- 移动适配:vw/vh
- ADC voltage calculation of STM32 single chip microcomputer
- MySQL relearn 2- Alibaba cloud server CentOS installation mysql8.0
- [FPGA tutorial case 8] design and implementation of frequency divider based on Verilog
- 云Redis 有什么用? 云redis怎么用?
- 颈椎、脚气
- tars源码分析之5
- Tar source code analysis 6
- 响应式移动Web测试题
猜你喜欢

What is industrial computer encryption and how to do it

what the fuck! If you can't grab it, write it yourself. Use code to realize a Bing Dwen Dwen. It's so beautiful ~!

Cervical vertebra, beriberi

the input device is not a TTY. If you are using mintty, try prefixing the command with ‘winpty‘

Research on an endogenous data security interaction protocol oriented to dual platform and dual chain architecture

uniapp小程序分包

Set JTAG fuc invalid to normal IO port
![[number theory] fast power (Euler power)](/img/1e/5d032c8f2e43f553b4543d28ea2a2d.jpg)
[number theory] fast power (Euler power)

【MySQL】数据库视图的介绍、作用、创建、查看、删除和修改(附练习题)

Responsive - media query
随机推荐
Su Weijie, a member of Qingyuan Association and an assistant professor at the University of Pennsylvania, won the first Siam Youth Award for data science, focusing on privacy data protection, etc
Uniapp custom environment variables
Wechat applet scroll view component scrollable view area
7. Agency mode
List of top ten professional skills required for data science work
Variables d'environnement personnalisées uniapp
Responsive - media query
期末周,我裂开
thread priority
Knowledge payment applet dream vending machine V2
What is tweeman's law?
2022年,或許是未來10年經濟最好的一年,2022年你畢業了嗎?畢業後是怎麼計劃的?
[number theory] fast power (Euler power)
Mysql 45讲学习笔记(十三)表数据删掉一半,表文件大小不变
MySQL relearn 2- Alibaba cloud server CentOS installation mysql8.0
Highly paid programmers & interview questions: how does redis of series 119 realize distributed locks?
CORS is not intended to protect API endpoints - nikofischer
Selection (021) - what is the output of the following code?
Mysql 45讲学习笔记(六)全局锁
the input device is not a TTY. If you are using mintty, try prefixing the command with ‘winpty‘