当前位置:网站首页>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;
}
边栏推荐
- Selenium driver ie common problem solving message: currently focused window has been closed
- About how idea sets up shortcut key sets
- Summary of June 2022
- Mobile adaptation: vw/vh
- Google Chrome Portable Google Chrome browser portable version official website download method
- Responsive mobile web test questions
- [GF (q) + LDPC] regular LDPC coding and decoding design and MATLAB simulation based on the GF (q) field of binary graph
- Bottom problem of figure
- Responsive - media query
- tars源码分析之8
猜你喜欢

Centos8 install mysql 7 unable to start up

Responsive - media query

Cervical vertebra, beriberi

图的底部问题
![[MySQL] introduction, function, creation, view, deletion and modification of database view (with exercises)](/img/03/2b37e63d0d482d5020b7421ac974cb.jpg)
[MySQL] introduction, function, creation, view, deletion and modification of database view (with exercises)

Deep profile data leakage prevention scheme

Crawler (III) crawling house prices in Tianjin

uniapp小程序分包

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

the input device is not a TTY. If you are using mintty, try prefixing the command with ‘winpty‘
随机推荐
Uniapp applet subcontracting
Industrial computer anti-virus
Summary of leetcode BFS question brushing
P26-P34 third_ template
ABCD four sequential execution methods, extended application
Deep profile data leakage prevention scheme
Tar source code analysis 9
How does the inner roll break?
Responsive mobile web test questions
Mobile adaptation: vw/vh
Variables d'environnement personnalisées uniapp
ADC voltage calculation of STM32 single chip microcomputer
响应式移动Web测试题
图的底部问题
颈椎、脚气
The most effective futures trend strategy: futures reverse merchandising
《国民经济行业分类GB/T 4754—2017》官网下载地址
Mysql 45讲学习笔记(七)行锁
MySQL relearn 2- Alibaba cloud server CentOS installation mysql8.0
MySQL 45 learning notes (XI) how to index string fields