SOGO論壇

標題: 小弟不才,請問在C語言中,我要擷取數字要怎麼用 [列印本頁]

作者: s188188188    時間: 2016-4-14 17:17:30     標題: 小弟不才,請問在C語言中,我要擷取數字要怎麼用

小弟不才,請問在C語言中,我要擷取數字要怎麼用
就是說我輸入一串數字,然後輸出時只要後面兩個字,跪求大大們教我
舉例:我假如輸入1234567的數字,我只要67兩個數字輸出而已
跪求大大教我,小弟不才
作者: alphi    時間: 2016-4-20 14:49:37

  1. #include <stdio.h>

  2. int main(int argc,char **argv)
  3. {
  4.      int iUserInputData;

  5.     scanf("%d",&iUserInputData);

  6.     printf("you are input",iIserInputData);

  7. }
複製代碼

作者: s188188188    時間: 2016-5-12 00:18:26

alphi 發表於 2016-4-20 14:49  

謝謝大大   我會試試看的   多謝指導

作者: woody6452    時間: 2019-8-27 23:29:30

s188188188 發表於 2016-5-12 00:18  
謝謝大大   我會試試看的   多謝指導

前面的程式是錯的
正確的程式如下

#include <stdio.h>

int main()
{
  int iInput;
  printf("Please give an integer number:");
  scanf("%d", &iInput);
  printf("The last two number is \"%02d\"\n", (iInput % 100));
}
作者: fhls    時間: 2019-9-26 21:17:59

只要取100的餘數便可
main()
{
int i;
printf(" i:");
scanf("%d",&i);
printf("%d", i%100);
}




歡迎光臨 SOGO論壇 (https://oursogo.com/) Powered by OURSOGO.COM