C 练习实例51
C 语言教程
· 2019-02-22 06:43:18
题目:学习使用按位与 &。
程序分析:0&0=0; 0&1=0; 1&0=0; 1&1=1 。
程序源代码:
// Created by www.codercto.com on 15/11/9. // Copyright © 2015年 码农教程. All rights reserved. // #include <stdio.h> int main() { int a,b; a=077; b=a&3; printf("a & b(decimal) 为 %d \n",b); b&=7; printf("a & b(decimal) 为 %d \n",b); return 0; }
以上实例输出结果为:
a & b(decimal) 为 3 a & b(decimal) 为 3
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
D3.js in Action
Elijah Meeks / Manning Publications / 2014-3 / USD 44.99
Table of Contents Part 1: An Introduction to D3 1 An introduction to D3.js 2 Information Visualization Data Flow 3 D ata-Driven Design and Interaction Part 2: The Pillars of Information......一起来看看 《D3.js in Action》 这本书的介绍吧!