导航菜单不工作Bootstrap

时间:2016-04-21 23:20:58

标签: php html css wordpress twitter-bootstrap

嗨我在wordPress Bootstrapped菜单中收到错误首先,当我将鼠标悬停在它上面时,它有关于我们的子菜单。其次,在移动屏幕响应按钮不起作用,并且没有单击

显示菜单列表

这是我的网站:http://www.abiglittlebiz.com/trevelle/

这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(int argc, char *argv[])
{

    char str [] = "xa_55_y_*_z_/_+_x_+";
    int length = 0;
    int decrementor = 0;
    int underscore_counter = 0;
    int i = 0;
    length = strlen (str);

    for(i  = 0; i < length; i++)
    {
        decrementor = 0;
        underscore_counter = 0;
        if(str[i] == '*' || str[i] == '/' || str[i] == '+' || str[i] == '-')
        {
            decrementor = i;
            while(underscore_counter != 3)
            {
                if(str[decrementor] == '_')
                {
                    underscore_counter++;
                    printf("underscore_counter is %d \n", underscore_counter);
                }
                decrementor--;
            }
        }
    }

    return 0;
}

0 个答案:

没有答案