English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

請問有大大能幫寫一下這個程式嗎
寫一程式,可以讓使用者輸入1個整數值,並判斷輸入值的第7個位元是0或1

2007-05-05 11:58:34 · 1 個解答 · 發問者 HUA 2 in 電腦與網際網路 程式設計

1 個解答

//Power by Visual Studio 2005
#include
#include
int main(int argc, char* argv[]){
//==========START==========//
int num,bit;
printf("Input a number: ");
scanf("%d",&num);
printf("Input bit: ");
scanf("%d",&bit);
printf(" %d\'s Binary bit is %d.\n",bit,(num>>(bit-1))&1);
//==========END==========//
system("PAUSE");
return 0;
}


2007-05-06 03:49:16 補充:
Scanner input=new Scanner(System.in);
PrintStream p=new PrintStream(System.out);
p.printf("Input a number: ");
int num=input.nextInt();
p.printf("Input bit: ");
int bit=input.nextInt();
p.printf(" %d\'s Binary bit is %d.\n",bit,(num>>(bit-1))&1);

2007-05-06 03:51:20 補充:
//Power by Eclipse v3.2
import java.util.*;
import java.io.*;
//測試類別檔名 TEST_JAVA.java
public class TEST_JAVA {
public static void main(String[] args){
//==========START==========//
( 在此區放上方的補充內容原始碼 )
//==========END==========//
}
}

2007-05-05 13:23:58 · answer #1 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers