好玩的一道笔试题

Posted lytwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好玩的一道笔试题相关的知识,希望对你有一定的参考价值。

  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);
}

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

以上是关于好玩的一道笔试题的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript笔试题(js高级代码片段)

一道笔试题引发的对Object.creat()的思考

js原型链的一些发现----来自一道笔试题

golang 中 string 转换 []byte 的一道笔试题

一道Android OpenGL笔试题

2018今日头条春招的一道笔试题 —— 通过改变枚举的变量进行枚举优化