用java怎么写:如果a为false且b为“不同意”,给c赋值44
//boolean a = false; //String b = "不同意"; //int c = 0; if((!a) && "不同意".equals(b)){ c = 44; }