码迷,mamicode.com
首页 > 其他好文 > 详细

好玩的一道笔试题

时间:2014-06-22 06:09:03      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   2014   

  1. /*实现函数:
  2.         void f(int a, int b, int c)
  3.         编码中不允许出现燃和if,switch,for,while之类的关键词以及"?:"表达式,并要求:
  4.         a=1时,打印b+c的值;
  5.         a=2时,打印b-c的值;
  6.         a=3时,打印b*c的值;
  7.         a=4时,打印b/c的值。

  1. */
下面是我的解答,哈哈:
#include <iostream>

int cal(int a,int b, int c){
        int res = 0;
        (!(a^1) && (res = (b+c))) || (!(a^2) && (res = (b-c))) 
        || (!(a^3) && (res = (b*c))) || (!(a^3) && (res = (b/c)));
        printf("res:%d\n", res);
}

int main(){
        int a = 0;
        int b = 5;
        int c = 6;
        printf("b:5,c:6,pls input a:\n");
        while (std::cin >> a)
        cal(a,5,6);
}

有木有一种原来语言还可以这么晚的赶脚,来编译试试吧

好玩的一道笔试题,布布扣,bubuko.com

好玩的一道笔试题

标签:style   class   blog   code   color   2014   

原文地址:http://blog.csdn.net/boyxiaolong/article/details/32943283

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!