当前位置:网站首页>[C Prime plus chapitre II Questions de programmation après la Classe]
[C Prime plus chapitre II Questions de programmation après la Classe]
2022-06-28 23:41:00 【Le restaurant impérial essaie toujours.】
2.1
#include <stdio.h>
int main (void)
{
printf("Gustav Mahler\n");
printf("Gustav\n");
printf("Mahler\n");
printf("Gustav Mahler");
return 0;
}
//
// Created by Chen on 2022/6/26.
//
2.2
#include <stdio.h>
int main (void)
{
printf("Diago\n");
printf("China");
return 0;
}
//
// Created by Chen on 2022/6/26.
//
2.3
#include <stdio.h>
int main (void)
{
int year;
year=30;
printf("%d %d",year,year*365);
return 0;
}
//
// Created by Chen on 2022/6/26.
//
2.4
#include <stdio.h>
void jolly (void);
void deny (void);
int main (void)
{
jolly();
deny();
return 0;
}
void jolly (void)
{
printf("For he's a jolly good fellow!\n");
printf("For he's a jolly good fellow!\n");
printf("For he's a jolly good fellow!\n");
}
void deny (void)
{
printf("Which nobody can deny!");
}
//
// Created by Chen on 2022/6/26.
//
2.5
#include <stdio.h>
void br (void);
void ic (void);
int main (void)
{
br();
ic();
printf("India,China\n");
printf("Brazil,Russia");
return 0;
}
void br (void)
{
printf("Brazil,Russia,");
}
void ic (void)
{
printf("India,China\n");
}
//
// Created by Chen on 2022/6/26.
//
2.6
#include <stdio.h>
int main (void)
{
int toes;
toes=10;
printf("%d %d %d",toes,2*toes,toes*toes*toes);
return 0;
}
//
// Created by Chen on 2022/6/26.
//
2.7
#include <stdio.h>
void smile (void);
int main (void)
{
smile();
smile();
smile();
printf("\n");
smile();
smile();
printf("\n");
smile();
return 0;
}
void smile (void)
{
printf("Smile!");
}
//
// Created by Chen on 2022/6/26.
//
2.8
#include <stdio.h>
void one_three (void);
void two (void);
int main (void)
{
printf("starting now:\n");
one_three();
two();
printf("three\n");
printf("done!");
return 0;
}
void one_three (void)
{
printf("one\n");
}
void two (void)
{
printf("two\n");
}
//
// Created by Chen on 2022/6/26.
//
边栏推荐
- Non scientific class! The road of self-study!
- scrapy保存数据到excel:利用openpyxl创建多张表,设置Excel行数限制
- frameworks/base/core/res/res/values/symbols. Xml:3915: error: no definition for declared symbol solution
- lock4j--分布式锁中间件--使用/实例
- The second session of question swiping and clock out activity -- solving the switching problem with recursion as the background (2)
- 笔记
- Oil monkey script learning
- mysql-5.7.30-winx64免安装版下载安装教程
- The picture display on the left of the two column layout is determined by the content height on the right
- Stm32f407------- general timer
猜你喜欢

What pitfalls should be avoided in the job interview for the operation post in 2022?

Mobile heterogeneous computing technology - GPU OpenCL programming (basic)
![Edge extraction based on Halcon learning [2] circles Hdev routine](/img/e4/e3738d71c2ff5a239a12f67d06e2c9.jpg)
Edge extraction based on Halcon learning [2] circles Hdev routine

Chapter V virtual memory exercise

stm32F407-------GPIO输入实验

stm32F407-------电容触摸按键

Counting sorting and stability of sorting

Stm32f407----- register address name mapping analysis

Interviewer: what is the internal implementation of strings in redis?

笔记
随机推荐
[conception de la machine d'état] Moore, Mealy State Machine, Three - stage, Two - stage, one - stage State Machine Writing Specification
华为22级专家十年心血终成云原生服务网格进阶实战文档,是真的6
IDC: Alibaba cloud ranks first in the market share of China's data governance platform in 2021
Finally, someone explained the cloud native architecture
设计电商秒杀系统
Non scientific class! The road of self-study!
stm32F407-------LCD
Basic operation of MySQL database: import hellodb SQL and query as required; Create account and authorize
融云通信解决方案 破解企业沟通痛点
[opencv] - linear filtering: box filtering, mean filtering, Gaussian filtering
【状态机设计】Moore、Mealy状态机、三段式、二段式、一段式状态机书写规范
That's how he did it!
urllib.parse 解析url连接中的参数
Junior, it's not easy!
The second session of question swiping and clock out activity -- solving the switching problem with recursion as the background (2)
Is it safe and reliable to open a securities account in Yixue school?
Ahai's advice
The picture display on the left of the two column layout is determined by the content height on the right
Solve the problem of Chinese parsing by configparser
frameworks/base/core/res/res/values/symbols. Xml:3915: error: no definition for declared symbol solution