南阳96

 1 #include<stdio.h>
 2 int fin(int x,int k)
 3 {
 4     if(x<k)
 5         return k/10;
 6     else
 7         return fin(x,k*10);
 8 }
 9
10 int main()
11 {
12     int n,x,m;
13     scanf("%d",&n);
14     while(n--)
15     {
16         scanf("%d",&x);
17         m=fin(x,10);
18         x-=x/m*m;
19         printf("%d\n",x);
20     }
21 }

另可用字符数组处理。

时间: 2024-10-07 06:29:50

南阳96的相关文章

滥杏目咀淋m07cs983t9dxun5v483

http://www.gxxc.gov.cn/Town/TownDetails?id=94210&town=%e8%bf%b7%e5%b9%bb%e8%8d%af%e4%b8%8a%e5%93%aa%e6%9c%89%e7%9a%84%e4%b9%b0%2b%ef%bd%91Q%e2%92%89%e2%92%8f%e2%92%8c%e2%92%8f%e2%92%89%e2%92%90%e2%92%88%e2%92%89O.http://www.qiushibaike.com/tag/%e6%a1

康师傅v圣诞节放假卡了开发商离开家小cncv能在今年出现在

http://search.pptv.com/s_video/q_%E5%B9%BF%E7%81%B5%E5%93%AA%E9%87%8C%E6%9C%89%E6%89%BE%E7%BA%A2%E7%81%AF%E5%8C%BA%E5%8F%AF%E4%BB%A5%E5%AB%96%E5%A8%BC%E6%89%93%E7%82%AE188w0200w1167%E9%9B%AF%E9%9B%AF http://search.pptv.com/s_video/q_%E5%A4%AA%E5%8E%9

45给货就

http://www.wasu.cn/search/show/k/%E2%97%A5%E6%B2%99%E6%B2%B3%E5%AE%89%E7%9C%A0%E8%8D%AF%E5%93%AA%E9%87%8C%E4%B9%B0Q%EF%BC%9A%EF%BC%96%EF%BC%99%EF%BC%95%EF%BC%92%EF%BC%95%EF%BC%96%EF%BC%97%EF%BC%91%EF%BC%97 http://www.wasu.cn/search/show/k/%CF%89%E6%B

剧院花岗岩节能环保

http://www.ettoday.net/news/tag//%E3%80%93%E5%A7%9C%E5%A0%B0%E5%AE%89%E7%9C%A0%E8%8D%AF%E5%93%AA%E9%87%8C%E6%9C%89%E5%8D%96Q%EF%BC%9A%EF%BC%91%EF%BC%91%EF%BC%92%EF%BC%97%EF%BC%94%EF%BC%90%EF%BC%91%EF%BC%91%EF%BC%97%EF%BC%95/ http://www.ettoday.net/ne

【南阳OJ分类之语言入门】80题题目+AC代码汇总

声明: 题目部分皆为南阳OJ题目. 代码部分包含AC代码(可能不止一个)和最优代码,大部分都是本人写的,并且大部分为c代码和少部分c++代码and极少java代码,但基本都是c语言知识点,没有太多差别,可能代码有的写的比较丑,毕竟知识有限. 语言入门部分题基本都较为简单,是学习编程入门的很好练习,也是ACM的第一步,入门的最佳方法,望认真对待. 本文由csdn-jtahstu原创,转载请注明出处,欢迎志同道合的朋友一起交流学习.本人QQ:1373758426和csdn博客地址. now begi

2015南阳CCPC L - Huatuo&#39;s Medicine 水题

L - Huatuo's Medicine Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 无 Description Huatuo was a famous doctor. He use identical bottles to carry the medicine. There are different types of medicine. Huatuo put medicines into the bottles and chain these b

南阳理工 题目9:posters(离散化+线段树)

posters 时间限制:1000 ms  |  内存限制:65535 KB 难度:6 描述 The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city council has finally deci

南阳理工另一种阶乘问题

#include<stdio.h>int main(){  int n,m;  int sum,i;  int a[21];  int t=1,t1=1;  for(i=1;i<21;i=i+2)  {   a[i]=t*t1;   a[i+1]=a[i];   t=t1*t;   t1=t1+2;  }  scanf("%d",&n);  while(n--)  {   sum=0;   scanf("%d",&m);   for

【甘道夫】Hadoop2.2.0环境使用Sqoop-1.4.4将Oracle11g数据导入HBase0.96,并自动生成组合行键

目的: 使用Sqoop将Oracle中的数据导入到HBase中,并自动生成组合行键! 环境: Hadoop2.2.0 Hbase0.96 sqoop-1.4.4.bin__hadoop-2.0.4-alpha.tar.gz Oracle11g jdk1.7 Ubuntu14 Server 这里关于环境吐槽一句: 最新版本的Sqoop1.99.3功能太弱,只支持导入数据到HDFS,没有别的任何选项,太土了!(如有不同意见欢迎讨论给出解决方案) 命令: sqoop import --connect