当前位置:网站首页>1002: output the second integer
1002: output the second integer
2022-06-12 13:23:00 【Xiao Liu wants to be number one】
1002: Output the second integer
The time limit : 1000 ms Memory limit : 65536 KB
Submission number : 124383 Passing number : 94857
【 Title Description 】
Enter three integers , Integers are separated by a space , The whole number is 32 Bit signed integer . Output the integer of the second input .
【 Input 】
There is only one line , Three integers in total , Integers are separated by a space . The whole number is 32 Bit signed integer .
【 Output 】
There is only one line , An integer , The second integer entered .
【 sample input 】
123 456 789
【 sample output 】
456
#include<iostream>
using namespace std;
int main()
{
int a, b, c;
cin >> a >> b >> c;
cout << b;
return 0;
}
边栏推荐
- Embedded driver design
- jsp跳转问题,不能显示数据库数据,并且不能跳转
- Help you with everything from the basics to the source code. Introduce the technology in detail
- C#DBHelper_ FactoryDB_ GetConn
- What if the MySQL installation on the apple computer is completed and cannot be found
- Hardware composition of embedded system - introduction of embedded development board based on ARM
- LeetCode滑动窗口刷题总结
- Chrome debugging tool
- import torch_geometric 第一个图网络例子
- 达梦数据库DM8 windows环境安装
猜你喜欢

Help you with everything from the basics to the source code. Introduce the technology in detail

Pytorch to onnx, onnxruntime reasoning in mmclas

Semantic segmentation with pytorch

Design virtual network to realize communication between virtual machine instance and external network

A "murder case" caused by ES setting operation

成功跳槽阿里,进阶学习

Pytoch official fast r-cnn source code analysis (I) -- feature extraction

移动应用出海的“新大陆”

What is the function tag? Article to understand its role and its best practices

Pre research of image scanning tool
随机推荐
苹果电脑上MySQL安装完成找不到怎么办
Openmax (OMX) framework
软件构造 03 正则表达式
403 you don't have permission to access this resource
Introduction to application design scheme of intelligent garbage can voice chip, wt588f02b-8s
Successfully rated Tencent t3-2, 10000 word parsing
C language [23] classic interview questions [2]
Getting to know blob objects
关于#SQLite写注册功能时,数据表查询出错#的问题,如何解决?
【云原生 | Kubernetes篇】深入了解Deployment(八)
VGA display color bar and picture (FPGA)
Install MySQL database independently on Debian 10
import torch_ Geometric loads some common datasets
Resume NFT platform trustrecruit joined Octopus network as a candidate application chain
Innovation training (XI) summary of some bugs in the development process
Django note 21: querying databases using native SQL
Embedded driver design
It is enough to read this article. Web Chinese development
Online picture material
leetcode 47. Permutations II full permutations II (medium)