最贊回答 / weixin_慕標(biāo)5518024
至少在我的事件中,是-1(大概率錯(cuò)的)#include <stdio.h>int main(){? ? int a=-1;? ? unsigned int b=a;? ? printf("%d",b);? ? return 0;}
最新回答 / qq_不告訴你_dpwyQ2
程序是可以運(yùn)行, 大數(shù)值會(huì)溢出
int testPoint = 85;
if (testPoint>=90) { std::cout<<"成績(jī):優(yōu)秀"<<std::endl;
}else if( 90 >testPoint >= 75){std::cout<<"成績(jī):良"<<std::endl;
}else if (75 > testPoint >= 60) {
std::cout<<"成績(jī):及格"<<std::endl;
}else if ( testPoint<60 ){
std::cout<<"成績(jī):不及格"<<std::endl;
}
if (testPoint>=90) { std::cout<<"成績(jī):優(yōu)秀"<<std::endl;
}else if( 90 >testPoint >= 75){std::cout<<"成績(jī):良"<<std::endl;
}else if (75 > testPoint >= 60) {
std::cout<<"成績(jī):及格"<<std::endl;
}else if ( testPoint<60 ){
std::cout<<"成績(jī):不及格"<<std::endl;
}
2023-05-28
最新回答 / AndroidRA9
如果你的if 語句是在for 循環(huán)里的話,執(zhí)行了continue語句后這次的printf語句不會(huì)執(zhí)行,但是下一個(gè)循環(huán)的printf語句有可能會(huì)被執(zhí)行。
2023-05-01
最贊回答 / 輝同
int argc, char **argv 這兩個(gè)參數(shù)用在下面這個(gè)場(chǎng)景比如編譯完的程序名為pro.exe,在命令行里面如下運(yùn)行:pro.exe "aaa" "bbb" "ccc"argc 獲取到的是pro.exe后的帶的參數(shù)個(gè)數(shù),這里為3**argv 獲取到是數(shù)組:{"aaa", "bbb", "ccc"}這樣就可以在程序中展開這兩個(gè)參數(shù),做你程序具體要做的事件。如果是int main()這種寫法,則pro.exe沒辦法獲取后面的參數(shù), 當(dāng)然程序如果不需要帶參數(shù),則可以這樣寫。
2023-04-19
最新回答 / 慕沐8157732
enum Week{? ? Mon,//星期一//第一個(gè)默認(rèn)為0? ? Tue,//星期二 1? ? Wed,//星期三 2? ? Thu,//星期四 3? ? Fri=0,//星期五 你賦值為0? ? Sat,//星期六 1? ? Sun,//星期日 2};
2023-03-26
最新回答 / 慕沐8157732
#include?<stdio.h>?這是C語言的頭文件 #include?<iostream>?這是C++語言的頭文件兩者可以理解作用相同
std::cin?>>?a?>>?b;這里是屬于#include?<iostream>因此,
必須要包含#include?<iostream>
2023-03-23