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

好玩的一道笔试题

时间:2017-07-31 14:47:41      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:console   include   lis   content   表达式   ios   input   哈哈   switch   

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

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

好玩的一道笔试题

标签:console   include   lis   content   表达式   ios   input   哈哈   switch   

原文地址:http://www.cnblogs.com/lytwajue/p/7262686.html

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