好玩的一道笔试题
Posted lytwajue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好玩的一道笔试题相关的知识,希望对你有一定的参考价值。
-
/*实现函数:
-
void f(int a, int b, int c)
-
编码中不同意出现燃和if,switch,for,while之类的关键词以及"?
:"表达式。并要求:
-
a=1时。打印b+c的值。
-
a=2时,打印b-c的值。
-
a=3时,打印b*c的值。
-
a=4时。打印b/c的值。
- */
以下是我的解答,哈哈:
#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); }
有木有一种原来语言还能够这么晚的赶脚,来编译试试吧
以上是关于好玩的一道笔试题的主要内容,如果未能解决你的问题,请参考以下文章