首页 > 其他分享 >信奥一本通1164:digit函数

信奥一本通1164:digit函数

时间:2024-05-26 12:34:25浏览次数:22  
标签:1164 digit 信奥 函数 int 样例

1164:digit函数

时间限制: 1000 ms 内存限制: 65536 KB
提交数:41504 通过数: 26475
【题目描述】
在程序中定义一函数digit(n,k)
,它能分离出整数n
从右边数第k
个数字。

【输入】
正整数n
和k

【输出】
一个数字。

【输入样例】
31859 3
【输出样例】
8

点击查看代码
#include<bits/stdc++.h>
using namespace std;

int digit(int n,int k)
{
	int i=1;
	while(i<k)
	{
		n/=10;
		i++;
	}
	return n%10;
}

int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    printf("%d\n",digit(n,k));
    return 0;
}

标签:1164,digit,信奥,函数,int,样例
From: https://www.cnblogs.com/K2Nie/p/18213517

相关文章

  • 信奥一本通1405:质数的和与积
    1405:质数的和与积时间限制:1000ms内存限制:65536KB提交数:31481通过数:23479【题目描述】两个质数的和是S,它们的积最大是多少?【输入】一个不大于10000的正整数S,为两个质数的和。【输出】一个整数,为两个质数的最大乘积。数据保证有解。【输入样例】50......
  • 信奥一本通1403:素数对
    1403:素数对时间限制:1000ms内存限制:65536KB提交数:38296通过数:28167【题目描述】两个相差为2的素数称为素数对,如5和7,17和19等,本题目要求找出所有两个数均不大于n的素数对。【输入】一个正整数n(1≤n≤10000)。【输出】所有小于等于n的素数对。每对素......
  • Reflective journal about digital story
    Process:IfirstchosethestoryIpreferred,andafterfindingthestorytext,Ideliberatedrepeatedly,puttingmyselfintotheprotagonist.Imaginingwhattheprotagonistthoughtof,didandsaid,Igotthefirst-personpointofviewtext.ThenIbegan......
  • Reflective Journal on Digital Story
    Makingadigitalstoryinvolvedseveralsteps.Istartedbybrainstormingideasandthemes.Then,Icreatedastoryboard,andfindsomeaudioclips.Afterthat,Iusedvideoeditingsoftwaretopieceeverythingtogether.Finally,Ireviewedandrefinedth......
  • 2_Reflective journal about digital story
    Reflectivejournalaboutdigitalstory1) the process of making a digital story First and foremost, I decide on the story I wish to present, and afterwards, I summarize it based on its original content. Secondly, I found a few......
  • Digital SRAM-CIM for MAC
    An8TSRAMBasedDigitalCompute-In-MemoryMacroForMultiply-And-AccumulateAcceleratingintroduction相比模拟counterparts,数字CIM具有灵活的可编程性、推理精度等优势。然而,先前的工作采用复杂的SRAMbit-cells和计算部件,导致了较大的面积负担。本文提出了一种8TSRAMb......
  • index.js from Terser Error: error:0308010C:digital envelope routines::unsupporte
    Vue报错error:0308010C:digitalenveloperoutines::unsupported出现这个错误是因为node.jsV17版本中最近发布的OpenSSL3.0,而OpenSSL3.0对允许算法和密钥大小增加了严格的限制,可能会对生态系统造成一些影响.方法1.打开终端(按健win+R弹出窗口,键盘输入cmd,然后敲回车)并......
  • Digital story
    Onceuponatime,thereisawillingcouple.Itisapitythattheywantababy,buttheirwishnevercometrue.Standingbehindthecouple’shouse,agardenbelongingtoapowerfulwitchisalwayssurroundedwithtallwallpreventingothersfromhere.On......
  • 报错“ opensslErrorStack: [ 'error:03000086:digital envelope routines::initiali
    报错“ opensslErrorStack:['error:03000086:digitalenveloperoutines::initializationerror']”报错信息前端启动项目报错,报错信息如下:$yarnstartyarnrunv1.22.21$cross-envUMI_ENV=devumidevBrowserslist:caniuse-liteisoutdated.Pleaserun:npx......
  • 使用digital amp时通过mtkparser从cfg音频文件转成ini格式
    针对digitalamp主要利用ini里的内容。drivercode会依据iniformattype去parser内容给digitalamp。下面是mtkparser的格式[INIT_TABLE]IniFormatType=x//MtkParser目前固定填0即可count=xx;//xx是后面部分index总数index_x=AA,BB,CC;//x:命令index值......